blob: f6ce3c4494d0fc620a4145a6af7aabe599bb5b67 [file] [log] [blame]
Bob Badour02040de2021-02-03 18:08:28 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Jaewoong Jung4b79e982020-06-01 10:45:49 -07005bootstrap_go_package {
6 name: "soong-java",
7 pkgPath: "android/soong/java",
8 deps: [
9 "blueprint",
10 "blueprint-pathtools",
11 "soong",
12 "soong-android",
13 "soong-cc",
14 "soong-dexpreopt",
15 "soong-genrule",
16 "soong-java-config",
Liz Kammerdd849a82020-06-12 16:38:45 -070017 "soong-python",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070018 "soong-remoteexec",
19 "soong-tradefed",
20 ],
21 srcs: [
22 "aapt2.go",
23 "aar.go",
24 "android_manifest.go",
25 "android_resources.go",
26 "androidmk.go",
27 "app_builder.go",
28 "app.go",
Jaewoong Jungf9b44652020-12-21 12:29:12 -080029 "app_import.go",
30 "app_set.go",
Jaewoong Jung26342642021-03-17 15:56:23 -070031 "base.go",
Paul Duffin3451e162021-01-20 15:16:56 +000032 "boot_image.go",
Paul Duffin9a89a2a2020-10-28 19:20:06 +000033 "boot_jars.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070034 "builder.go",
Artur Satayeveabf2c12021-04-07 15:45:02 +010035 "classpath_fragment.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070036 "device_host_converter.go",
37 "dex.go",
38 "dexpreopt.go",
39 "dexpreopt_bootjars.go",
40 "dexpreopt_config.go",
41 "droiddoc.go",
Colin Cross2207f872021-03-24 12:39:08 -070042 "droidstubs.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070043 "gen.go",
44 "genrule.go",
45 "hiddenapi.go",
Paul Duffinc6bb7cf2021-04-08 17:49:27 +010046 "hiddenapi_modular.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070047 "hiddenapi_singleton.go",
48 "jacoco.go",
49 "java.go",
50 "jdeps.go",
51 "java_resources.go",
52 "kotlin.go",
Colin Cross014489c2020-06-02 20:09:13 -070053 "lint.go",
Pete Gillin84c38072020-07-09 18:03:41 +010054 "legacy_core_platform_api_usage.go",
Paul Duffinbb7f1ac2021-03-29 22:18:45 +010055 "platform_bootclasspath.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070056 "platform_compat_config.go",
57 "plugin.go",
58 "prebuilt_apis.go",
59 "proto.go",
60 "robolectric.go",
Jaewoong Jungf9b44652020-12-21 12:29:12 -080061 "rro.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070062 "sdk.go",
63 "sdk_library.go",
JaeMan Parkff715562020-10-19 17:25:58 +090064 "sdk_library_external.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070065 "support_libraries.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070066 "system_modules.go",
67 "testing.go",
68 "tradefed.go",
69 ],
70 testSrcs: [
71 "androidmk_test.go",
Jaewoong Jungf9b44652020-12-21 12:29:12 -080072 "app_import_test.go",
73 "app_set_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070074 "app_test.go",
Paul Duffin3451e162021-01-20 15:16:56 +000075 "boot_image_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070076 "device_host_converter_test.go",
77 "dexpreopt_test.go",
78 "dexpreopt_bootjars_test.go",
Colin Cross2207f872021-03-24 12:39:08 -070079 "droiddoc_test.go",
80 "droidstubs_test.go",
Liz Kammer5ca3a622020-08-05 15:40:41 -070081 "hiddenapi_singleton_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070082 "java_test.go",
83 "jdeps_test.go",
84 "kotlin_test.go",
Jaewoong Jung79e6f6b2021-04-21 14:01:55 -070085 "lint_test.go",
Paul Duffinbb7f1ac2021-03-29 22:18:45 +010086 "platform_bootclasspath_test.go",
Paul Duffin29072a92021-03-16 10:12:49 +000087 "platform_compat_config_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070088 "plugin_test.go",
Jaewoong Jungf9b44652020-12-21 12:29:12 -080089 "rro_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070090 "sdk_test.go",
Paul Duffindb284be2021-03-11 08:07:46 +000091 "system_modules_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070092 ],
93 pluginFor: ["soong_build"],
94}