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 "sbox_proto", 12 "soong", 13 "soong-android-soongconfig", 14 "soong-bazel", 15 "soong-cquery", 16 "soong-remoteexec", 17 "soong-response", 18 "soong-shared", 19 "soong-ui-metrics_proto", 20 ], 21 srcs: [ 22 "androidmk.go", 23 "apex.go", 24 "api_levels.go", 25 "arch.go", 26 "arch_list.go", 27 "bazel.go", 28 "bazel_handler.go", 29 "bazel_paths.go", 30 "config.go", 31 "csuite_config.go", 32 "deapexer.go", 33 "defaults.go", 34 "defs.go", 35 "depset_generic.go", 36 "depset_paths.go", 37 "deptag.go", 38 "expand.go", 39 "filegroup.go", 40 "fixture.go", 41 "hooks.go", 42 "image.go", 43 "license.go", 44 "license_kind.go", 45 "license_sdk_member.go", 46 "licenses.go", 47 "makefile_goal.go", 48 "makevars.go", 49 "metrics.go", 50 "module.go", 51 "mutator.go", 52 "namespace.go", 53 "neverallow.go", 54 "ninja_deps.go", 55 "notices.go", 56 "onceper.go", 57 "override_module.go", 58 "package.go", 59 "package_ctx.go", 60 "packaging.go", 61 "path_properties.go", 62 "paths.go", 63 "phony.go", 64 "prebuilt.go", 65 "prebuilt_build_tool.go", 66 "proto.go", 67 "queryview.go", 68 "register.go", 69 "rule_builder.go", 70 "sandbox.go", 71 "sdk.go", 72 "sdk_version.go", 73 "singleton.go", 74 "singleton_module.go", 75 "soong_config_modules.go", 76 "test_asserts.go", 77 "test_suites.go", 78 "testing.go", 79 "util.go", 80 "variable.go", 81 "visibility.go", 82 "writedocs.go", 83 ], 84 testSrcs: [ 85 "android_test.go", 86 "androidmk_test.go", 87 "apex_test.go", 88 "arch_test.go", 89 "bazel_handler_test.go", 90 "bazel_test.go", 91 "config_test.go", 92 "csuite_config_test.go", 93 "defaults_test.go", 94 "depset_test.go", 95 "deptag_test.go", 96 "expand_test.go", 97 "fixture_test.go", 98 "license_kind_test.go", 99 "license_test.go", 100 "licenses_test.go", 101 "module_test.go", 102 "mutator_test.go", 103 "namespace_test.go", 104 "neverallow_test.go", 105 "ninja_deps_test.go", 106 "onceper_test.go", 107 "package_test.go", 108 "packaging_test.go", 109 "path_properties_test.go", 110 "paths_test.go", 111 "prebuilt_test.go", 112 "rule_builder_test.go", 113 "singleton_module_test.go", 114 "soong_config_modules_test.go", 115 "util_test.go", 116 "variable_test.go", 117 "visibility_test.go", 118 ], 119} 120