blob: 380a388b27e1c525c47f2d06ea0a5e4e76fbd801 [file] [log] [blame]
Bob Badour02040de2021-02-03 18:08:28 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Dan Willemsen377737a2016-08-15 15:02:23 -07005subdirs = [
6 "androidmk",
Jeff Gastonaff66e52017-06-19 15:39:54 -07007 "bpfix",
Dan Willemsen377737a2016-08-15 15:02:23 -07008 "cmd/*",
Jeff Gastonf1fd45e2017-08-09 18:25:28 -07009 "fs",
10 "finder",
Jeff Gaston01547b22017-08-21 20:13:28 -070011 "jar",
Jeff Gaston11b5c512017-10-12 12:19:14 -070012 "zip",
Dan Willemsen377737a2016-08-15 15:02:23 -070013 "third_party/zip",
Dan Willemsen1e704462016-08-21 15:17:17 -070014 "ui/*",
Dan Willemsen377737a2016-08-15 15:02:23 -070015]
Colin Cross68f55102015-03-25 14:43:57 -070016
17bootstrap_go_package {
Colin Cross463a90e2015-06-17 14:20:06 -070018 name: "soong",
19 pkgPath: "android/soong",
20 deps: [
21 "blueprint",
22 ],
23 srcs: [
24 "doc.go",
Colin Cross463a90e2015-06-17 14:20:06 -070025 ],
26}
27
Colin Cross80031312015-03-14 14:28:22 -070028//
Dan Willemsen00fcbde2016-11-17 00:25:59 -080029// Defaults to enable various configurations of host bionic
30//
31
32cc_defaults {
33 name: "linux_bionic_supported",
34 host_supported: true,
35 target: {
36 host: {
37 enabled: false,
38 },
39 linux_bionic: {
40 enabled: true,
41 },
42 },
43}
44
45//
Colin Cross80031312015-03-14 14:28:22 -070046// C static libraries extracted from the gcc toolchain
47//
48
Jiyong Parkd773eb32017-07-03 13:18:12 +090049kernel_headers {
50 name: "device_kernel_headers",
51 vendor: true,
Hridya Valsarajud61df502018-08-21 15:51:20 -070052 recovery_available: true,
Daniel Normanca2ed382022-03-04 18:45:52 +000053 min_sdk_version: "apex_inherit",
Jiyong Parkd773eb32017-07-03 13:18:12 +090054}
Dan Willemsenc77a0b32017-09-18 23:19:12 -070055
56cc_genrule {
57 name: "host_bionic_linker_asm",
58 host_supported: true,
59 device_supported: false,
60 target: {
61 linux_bionic: {
62 enabled: true,
63 },
Dan Willemsen9d6c6722017-10-02 10:41:07 -070064 linux_glibc: {
Dan Willemsenc77a0b32017-09-18 23:19:12 -070065 enabled: false,
66 },
67 darwin: {
68 enabled: false,
69 },
70 },
71 tools: ["extract_linker"],
72 cmd: "$(location) -s $(out) $(in)",
73 srcs: [":linker"],
74 out: ["linker.s"],
75}
76
77cc_genrule {
Colin Cross9cfe6112021-06-11 18:02:22 -070078 name: "host_bionic_linker_script",
Dan Willemsenc77a0b32017-09-18 23:19:12 -070079 host_supported: true,
80 device_supported: false,
81 target: {
82 linux_bionic: {
83 enabled: true,
84 },
Dan Willemsen9d6c6722017-10-02 10:41:07 -070085 linux_glibc: {
Dan Willemsenc77a0b32017-09-18 23:19:12 -070086 enabled: false,
87 },
88 darwin: {
89 enabled: false,
90 },
91 },
92 tools: ["extract_linker"],
Colin Cross9cfe6112021-06-11 18:02:22 -070093 cmd: "$(location) -T $(out) $(in)",
Dan Willemsenc77a0b32017-09-18 23:19:12 -070094 srcs: [":linker"],
Colin Cross9cfe6112021-06-11 18:02:22 -070095 out: ["linker.script"],
Dan Willemsenc77a0b32017-09-18 23:19:12 -070096}
Paul Duffin1ab61862021-01-20 17:44:53 +000097
98// Instantiate the dex_bootjars singleton module.
99dex_bootjars {
100 name: "dex_bootjars",
101}
Pirama Arumuga Nainar2558ce32021-06-24 15:59:38 -0700102
103// Pseudo-test that's run on checkbuilds to ensure that get_clang_version can
104// parse cc/config/global.go.
105genrule {
106 name: "get_clang_version_test",
107 cmd: "$(location get_clang_version) > $(out)",
108 tools: ["get_clang_version"],
109 srcs: ["cc/config/global.go"],
110 out: ["clang-prebuilts-version.txt"],
111}
Jiakai Zhang0a0a2fb2021-09-30 09:38:19 +0000112
113dexpreopt_systemserver_check {
114 name: "dexpreopt_systemserver_check",
115}