blob: ee4089ce196ce68840fadee8fcdfdc35174f6db9 [file] [log] [blame]
Dan Willemsen47f445f2019-12-26 09:23:54 -08001cc_library_headers {
2 name: "FlexLexer",
3 host_supported: true,
4 vendor_available: true,
Victor Khimenko14ede932020-05-12 00:09:59 +02005 // TODO(b/153609531): remove when no longer needed.
6 native_bridge_supported: true,
Dan Willemsen47f445f2019-12-26 09:23:54 -08007 export_include_dirs: ["common/flex"],
8 notice: "common/flex/NOTICE",
9}
Dan Willemsenf3acd612020-07-16 17:45:05 -070010
11prebuilt_build_tool {
12 name: "bison",
13 deps: ["common/bison/**/*"],
14 target: {
15 darwin: {
16 src: "darwin-x86/bin/bison",
17 deps: ["darwin-x86/lib64/libc++.dylib"],
18 },
19 linux: {
20 src: "linux-x86/bin/bison",
21 deps: ["linux-x86/lib64/libc++.so"],
22 },
23 },
24}
25
26prebuilt_build_tool {
27 name: "flex",
28 target: {
29 darwin: {
30 src: "darwin-x86/bin/flex",
31 },
32 linux: {
33 src: "linux-x86/bin/flex",
34 },
35 },
36}
37
38prebuilt_build_tool {
39 name: "m4",
40 target: {
41 darwin: {
42 src: "darwin-x86/bin/m4",
43 },
44 linux: {
45 src: "linux-x86/bin/m4",
46 },
47 },
48}