blob: 910290a292e36de82829fa21bfc917982d6bdbed [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/**/*"],
Dan Willemsende9f4772020-07-17 19:42:12 -070014 export_to_make_var: "BISON",
Dan Willemsenf3acd612020-07-16 17:45:05 -070015 target: {
16 darwin: {
17 src: "darwin-x86/bin/bison",
18 deps: ["darwin-x86/lib64/libc++.dylib"],
19 },
20 linux: {
21 src: "linux-x86/bin/bison",
22 deps: ["linux-x86/lib64/libc++.so"],
23 },
24 },
25}
26
27prebuilt_build_tool {
28 name: "flex",
Dan Willemsende9f4772020-07-17 19:42:12 -070029 export_to_make_var: "LEX",
Dan Willemsenf3acd612020-07-16 17:45:05 -070030 target: {
31 darwin: {
32 src: "darwin-x86/bin/flex",
33 },
34 linux: {
35 src: "linux-x86/bin/flex",
36 },
37 },
38}
39
40prebuilt_build_tool {
41 name: "m4",
Dan Willemsende9f4772020-07-17 19:42:12 -070042 export_to_make_var: "M4",
Dan Willemsenf3acd612020-07-16 17:45:05 -070043 target: {
44 darwin: {
45 src: "darwin-x86/bin/m4",
46 },
47 linux: {
48 src: "linux-x86/bin/m4",
49 },
50 },
51}