moz.build 862 B

123456789101112131415161718192021222324
  1. # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
  2. # This Source Code Form is subject to the terms of the Mozilla Public
  3. # License, v. 2.0. If a copy of the MPL was not distributed with this
  4. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. jar = add_java_jar('annotationProcessors')
  6. jar.sources += [
  7. 'AnnotationInfo.java',
  8. 'AnnotationProcessor.java',
  9. 'classloader/AnnotatableEntity.java',
  10. 'classloader/ClassWithOptions.java',
  11. 'classloader/IterableJarLoadingURLClassLoader.java',
  12. 'classloader/JarClassIterator.java',
  13. 'CodeGenerator.java',
  14. 'SDKProcessor.java',
  15. 'utils/AlphabeticAnnotatableEntityComparator.java',
  16. 'utils/GeneratableElementIterator.java',
  17. 'utils/Utils.java',
  18. ]
  19. jar.extra_jars += [
  20. CONFIG['ANDROID_TOOLS'] + '/lib/lint.jar',
  21. CONFIG['ANDROID_TOOLS'] + '/lib/lint-checks.jar',
  22. ]