2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-10-10 04:05:37 +04:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2013-10-25 02:38:22 +04:00
|
|
|
|
|
|
|
jar = add_java_jar('annotationProcessors')
|
|
|
|
jar.sources += [
|
2013-11-22 00:41:28 +04:00
|
|
|
'AnnotationInfo.java',
|
2013-10-25 02:38:22 +04:00
|
|
|
'AnnotationProcessor.java',
|
2013-11-22 00:41:28 +04:00
|
|
|
'classloader/AnnotatableEntity.java',
|
|
|
|
'classloader/ClassWithOptions.java',
|
2013-11-14 05:11:58 +04:00
|
|
|
'classloader/IterableJarLoadingURLClassLoader.java',
|
|
|
|
'classloader/JarClassIterator.java',
|
2013-11-14 07:32:55 +04:00
|
|
|
'CodeGenerator.java',
|
2014-11-13 21:47:22 +03:00
|
|
|
'SDKProcessor.java',
|
2013-11-22 00:41:28 +04:00
|
|
|
'utils/AlphabeticAnnotatableEntityComparator.java',
|
|
|
|
'utils/GeneratableElementIterator.java',
|
2013-10-25 02:38:22 +04:00
|
|
|
'utils/Utils.java',
|
|
|
|
]
|
2017-03-31 04:55:02 +03:00
|
|
|
jar.extra_jars += CONFIG['ANDROID_LINT_CLASSPATH'].split()
|