blob: 7b5a629fd9caa0818d323f159c66fa35e2dd9507 [file] [log] [blame]
cc_library_headers {
name: "FlexLexer",
host_supported: true,
vendor_available: true,
// TODO(b/153609531): remove when no longer needed.
native_bridge_supported: true,
export_include_dirs: ["common/flex"],
notice: "common/flex/NOTICE",
}
prebuilt_build_tool {
name: "bison",
deps: ["common/bison/**/*"],
export_to_make_var: "BISON",
enabled: false,
arch: {
x86_64: {
enabled: true,
},
},
target: {
darwin: {
src: "darwin-x86/bin/bison",
deps: ["darwin-x86/lib64/libc++.dylib"],
},
linux: {
src: "linux-x86/bin/bison",
deps: ["linux-x86/lib64/libc++.so"],
},
},
}
prebuilt_build_tool {
name: "flex",
export_to_make_var: "LEX",
enabled: false,
arch: {
x86_64: {
enabled: true,
},
},
target: {
darwin: {
src: "darwin-x86/bin/flex",
},
linux: {
src: "linux-x86/bin/flex",
},
},
}
prebuilt_build_tool {
name: "m4",
export_to_make_var: "M4",
enabled: false,
arch: {
x86_64: {
enabled: true,
},
},
target: {
darwin: {
src: "darwin-x86/bin/m4",
},
linux: {
src: "linux-x86/bin/m4",
},
},
}
///
// cpython3 host prebuilts
///
soong_config_module_type {
name: "cpython3_cc_prebuilt_binary",
module_type: "cc_prebuilt_binary",
config_namespace: "cpython3",
bool_variables: ["force_build_host"],
properties: ["prefer"],
}
cpython3_cc_prebuilt_binary {
name: "py3-launcher",
host_supported: true,
device_supported: false,
compile_multilib: "64",
stl: "none",
notice: "common/py3-stdlib/NOTICE",
target: {
linux_glibc_x86_64: {
srcs: ["linux-x86/bin/py3-launcher64"]
},
darwin_x86_64: {
srcs: ["darwin-x86/bin/py3-launcher64"],
},
},
// Use the prebuilts for most branches
prefer: true,
soong_config_variables: {
force_build_host: {
prefer: false,
},
},
}
cpython3_cc_prebuilt_binary {
name: "py3-launcher-autorun",
host_supported: true,
device_supported: false,
compile_multilib: "64",
stl: "none",
notice: "common/py3-stdlib/NOTICE",
target: {
linux_glibc_x86_64: {
srcs: ["linux-x86/bin/py3-launcher-autorun64"]
},
darwin_x86_64: {
srcs: ["darwin-x86/bin/py3-launcher-autorun64"],
},
},
// Use the prebuilts for most branches
prefer: true,
soong_config_variables: {
force_build_host: {
prefer: false,
},
},
}
filegroup {
name: "py3-stdlib-prebuilt-srcs",
visibility: ["//external/python/cpython3/Lib"],
srcs: ["common/py3-stdlib/**/*.py"],
path: "common/py3-stdlib",
}