blob: a630f4bbfcd60f5615736b4ae239ec9c856ca25b [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",
35 "device_host_converter.go",
36 "dex.go",
37 "dexpreopt.go",
38 "dexpreopt_bootjars.go",
39 "dexpreopt_config.go",
40 "droiddoc.go",
41 "gen.go",
42 "genrule.go",
43 "hiddenapi.go",
44 "hiddenapi_singleton.go",
45 "jacoco.go",
46 "java.go",
47 "jdeps.go",
48 "java_resources.go",
49 "kotlin.go",
Colin Cross014489c2020-06-02 20:09:13 -070050 "lint.go",
Pete Gillin84c38072020-07-09 18:03:41 +010051 "legacy_core_platform_api_usage.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070052 "platform_compat_config.go",
53 "plugin.go",
54 "prebuilt_apis.go",
55 "proto.go",
56 "robolectric.go",
Jaewoong Jungf9b44652020-12-21 12:29:12 -080057 "rro.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070058 "sdk.go",
59 "sdk_library.go",
JaeMan Parkff715562020-10-19 17:25:58 +090060 "sdk_library_external.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070061 "support_libraries.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070062 "system_modules.go",
63 "testing.go",
64 "tradefed.go",
65 ],
66 testSrcs: [
67 "androidmk_test.go",
Jaewoong Jungf9b44652020-12-21 12:29:12 -080068 "app_import_test.go",
69 "app_set_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070070 "app_test.go",
Paul Duffin3451e162021-01-20 15:16:56 +000071 "boot_image_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070072 "device_host_converter_test.go",
73 "dexpreopt_test.go",
74 "dexpreopt_bootjars_test.go",
Liz Kammer5ca3a622020-08-05 15:40:41 -070075 "hiddenapi_singleton_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070076 "java_test.go",
77 "jdeps_test.go",
78 "kotlin_test.go",
79 "plugin_test.go",
Jaewoong Jungf9b44652020-12-21 12:29:12 -080080 "rro_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070081 "sdk_test.go",
Paul Duffindb284be2021-03-11 08:07:46 +000082 "system_modules_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070083 ],
84 pluginFor: ["soong_build"],
85}