1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5bootstrap_go_package { 6 name: "soong-android", 7 pkgPath: "android/soong/android", 8 deps: [ 9 "blueprint", 10 "blueprint-bootstrap", 11 "blueprint-metrics", 12 "sbox_proto", 13 "soong", 14 "soong-android_team_proto", 15 "soong-android-soongconfig", 16 "soong-remoteexec", 17 "soong-response", 18 "soong-shared", 19 "soong-starlark-format", 20 "soong-ui-metrics_proto", 21 "soong-android-allowlists", 22 23 "golang-protobuf-proto", 24 "golang-protobuf-encoding-prototext", 25 26 // Only used for tests. 27 "androidmk-parser", 28 ], 29 srcs: [ 30 "aconfig_providers.go", 31 "all_teams.go", 32 "androidmk.go", 33 "apex.go", 34 "apex_contributions.go", 35 "api_domain.go", 36 "api_levels.go", 37 "arch.go", 38 "arch_list.go", 39 "arch_module_context.go", 40 "base_module_context.go", 41 "buildinfo_prop.go", 42 "config.go", 43 "test_config.go", 44 "configurable_properties.go", 45 "configured_jars.go", 46 "csuite_config.go", 47 "deapexer.go", 48 "defaults.go", 49 "defs.go", 50 "depset_generic.go", 51 "deptag.go", 52 "early_module_context.go", 53 "expand.go", 54 "filegroup.go", 55 "fixture.go", 56 "gen_notice.go", 57 "hooks.go", 58 "image.go", 59 "license.go", 60 "license_kind.go", 61 "license_metadata.go", 62 "license_sdk_member.go", 63 "licenses.go", 64 "logtags.go", 65 "makevars.go", 66 "metrics.go", 67 "module.go", 68 "module_context.go", 69 "module_info_json.go", 70 "mutator.go", 71 "namespace.go", 72 "neverallow.go", 73 "ninja_deps.go", 74 "notices.go", 75 "onceper.go", 76 "override_module.go", 77 "package.go", 78 "package_ctx.go", 79 "packaging.go", 80 "path_properties.go", 81 "paths.go", 82 "phony.go", 83 "plugin.go", 84 "prebuilt.go", 85 "prebuilt_build_tool.go", 86 "proto.go", 87 "provider.go", 88 "raw_files.go", 89 "register.go", 90 "rule_builder.go", 91 "sandbox.go", 92 "sdk.go", 93 "sdk_version.go", 94 "shared_properties.go", 95 "singleton.go", 96 "singleton_module.go", 97 "soong_config_modules.go", 98 "team.go", 99 "test_asserts.go", 100 "test_suites.go", 101 "testing.go", 102 "updatable_modules.go", 103 "util.go", 104 "variable.go", 105 "visibility.go", 106 ], 107 testSrcs: [ 108 "all_teams_test.go", 109 "android_test.go", 110 "androidmk_test.go", 111 "apex_test.go", 112 "arch_test.go", 113 "config_test.go", 114 "configured_jars_test.go", 115 "csuite_config_test.go", 116 "defaults_test.go", 117 "depset_test.go", 118 "deptag_test.go", 119 "expand_test.go", 120 "filegroup_test.go", 121 "fixture_test.go", 122 "gen_notice_test.go", 123 "license_kind_test.go", 124 "license_test.go", 125 "licenses_test.go", 126 "module_test.go", 127 "mutator_test.go", 128 "namespace_test.go", 129 "neverallow_test.go", 130 "ninja_deps_test.go", 131 "onceper_test.go", 132 "package_test.go", 133 "packaging_test.go", 134 "path_properties_test.go", 135 "paths_test.go", 136 "prebuilt_test.go", 137 "rule_builder_test.go", 138 "sdk_version_test.go", 139 "sdk_test.go", 140 "selects_test.go", 141 "singleton_module_test.go", 142 "soong_config_modules_test.go", 143 "test_suites_test.go", 144 "util_test.go", 145 "variable_test.go", 146 "visibility_test.go", 147 ], 148} 149