blob: d6260b4002ff04c9a5d36d553ea84ad8828fbffd [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
Colin Crossba442872015-03-14 14:26:32 -070049toolchain_library {
Josh Gao7bd4c5c2017-02-23 17:52:24 -080050 name: "libwinpthread",
51 host_supported: true,
52 enabled: false,
53 target: {
54 windows: {
Dan Willemsenc77a0b32017-09-18 23:19:12 -070055 enabled: true,
Josh Gao7bd4c5c2017-02-23 17:52:24 -080056 },
Dan Willemsenfeea4df2018-10-07 18:16:48 -070057 windows_x86: {
58 src: "prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/lib32/libwinpthread.a",
59 },
60 windows_x86_64: {
61 src: "prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/lib/libwinpthread.a",
62 },
Josh Gao7bd4c5c2017-02-23 17:52:24 -080063 },
Jaewoong Jung62707f72018-11-16 13:26:43 -080064 notice: ":mingw-libwinpthread-notice",
Josh Gao7bd4c5c2017-02-23 17:52:24 -080065}
66
Jiyong Parkd773eb32017-07-03 13:18:12 +090067kernel_headers {
68 name: "device_kernel_headers",
69 vendor: true,
Hridya Valsarajud61df502018-08-21 15:51:20 -070070 recovery_available: true,
Jiyong Parkd773eb32017-07-03 13:18:12 +090071}
Dan Willemsenc77a0b32017-09-18 23:19:12 -070072
73cc_genrule {
74 name: "host_bionic_linker_asm",
75 host_supported: true,
76 device_supported: false,
77 target: {
78 linux_bionic: {
79 enabled: true,
80 },
Dan Willemsen9d6c6722017-10-02 10:41:07 -070081 linux_glibc: {
Dan Willemsenc77a0b32017-09-18 23:19:12 -070082 enabled: false,
83 },
84 darwin: {
85 enabled: false,
86 },
87 },
88 tools: ["extract_linker"],
89 cmd: "$(location) -s $(out) $(in)",
90 srcs: [":linker"],
91 out: ["linker.s"],
92}
93
94cc_genrule {
Colin Cross9cfe6112021-06-11 18:02:22 -070095 name: "host_bionic_linker_script",
Dan Willemsenc77a0b32017-09-18 23:19:12 -070096 host_supported: true,
97 device_supported: false,
98 target: {
99 linux_bionic: {
100 enabled: true,
101 },
Dan Willemsen9d6c6722017-10-02 10:41:07 -0700102 linux_glibc: {
Dan Willemsenc77a0b32017-09-18 23:19:12 -0700103 enabled: false,
104 },
105 darwin: {
106 enabled: false,
107 },
108 },
109 tools: ["extract_linker"],
Colin Cross9cfe6112021-06-11 18:02:22 -0700110 cmd: "$(location) -T $(out) $(in)",
Dan Willemsenc77a0b32017-09-18 23:19:12 -0700111 srcs: [":linker"],
Colin Cross9cfe6112021-06-11 18:02:22 -0700112 out: ["linker.script"],
Dan Willemsenc77a0b32017-09-18 23:19:12 -0700113}
Paul Duffin1ab61862021-01-20 17:44:53 +0000114
115// Instantiate the dex_bootjars singleton module.
116dex_bootjars {
117 name: "dex_bootjars",
118}
Pirama Arumuga Nainar2558ce32021-06-24 15:59:38 -0700119
120// Pseudo-test that's run on checkbuilds to ensure that get_clang_version can
121// parse cc/config/global.go.
122genrule {
123 name: "get_clang_version_test",
124 cmd: "$(location get_clang_version) > $(out)",
125 tools: ["get_clang_version"],
126 srcs: ["cc/config/global.go"],
127 out: ["clang-prebuilts-version.txt"],
128}