Dan Willemsen | 47f445f | 2019-12-26 09:23:54 -0800 | [diff] [blame] | 1 | cc_library_headers { |
| 2 | name: "FlexLexer", |
| 3 | host_supported: true, |
| 4 | vendor_available: true, |
Victor Khimenko | 14ede93 | 2020-05-12 00:09:59 +0200 | [diff] [blame] | 5 | // TODO(b/153609531): remove when no longer needed. |
| 6 | native_bridge_supported: true, |
Dan Willemsen | 47f445f | 2019-12-26 09:23:54 -0800 | [diff] [blame] | 7 | export_include_dirs: ["common/flex"], |
| 8 | notice: "common/flex/NOTICE", |
| 9 | } |
Dan Willemsen | f3acd61 | 2020-07-16 17:45:05 -0700 | [diff] [blame] | 10 | |
| 11 | prebuilt_build_tool { |
| 12 | name: "bison", |
| 13 | deps: ["common/bison/**/*"], |
Dan Willemsen | de9f477 | 2020-07-17 19:42:12 -0700 | [diff] [blame] | 14 | export_to_make_var: "BISON", |
Jiyong Park | 1291abb | 2020-09-09 17:16:54 +0900 | [diff] [blame] | 15 | enabled: false, |
| 16 | arch: { |
| 17 | x86_64: { |
| 18 | enabled: true, |
| 19 | }, |
| 20 | }, |
Dan Willemsen | f3acd61 | 2020-07-16 17:45:05 -0700 | [diff] [blame] | 21 | target: { |
| 22 | darwin: { |
| 23 | src: "darwin-x86/bin/bison", |
| 24 | deps: ["darwin-x86/lib64/libc++.dylib"], |
| 25 | }, |
| 26 | linux: { |
| 27 | src: "linux-x86/bin/bison", |
| 28 | deps: ["linux-x86/lib64/libc++.so"], |
| 29 | }, |
| 30 | }, |
| 31 | } |
| 32 | |
| 33 | prebuilt_build_tool { |
| 34 | name: "flex", |
Dan Willemsen | de9f477 | 2020-07-17 19:42:12 -0700 | [diff] [blame] | 35 | export_to_make_var: "LEX", |
Jiyong Park | 1291abb | 2020-09-09 17:16:54 +0900 | [diff] [blame] | 36 | enabled: false, |
| 37 | arch: { |
| 38 | x86_64: { |
| 39 | enabled: true, |
| 40 | }, |
| 41 | }, |
Dan Willemsen | f3acd61 | 2020-07-16 17:45:05 -0700 | [diff] [blame] | 42 | target: { |
| 43 | darwin: { |
| 44 | src: "darwin-x86/bin/flex", |
| 45 | }, |
| 46 | linux: { |
| 47 | src: "linux-x86/bin/flex", |
| 48 | }, |
| 49 | }, |
| 50 | } |
| 51 | |
| 52 | prebuilt_build_tool { |
| 53 | name: "m4", |
Dan Willemsen | de9f477 | 2020-07-17 19:42:12 -0700 | [diff] [blame] | 54 | export_to_make_var: "M4", |
Jiyong Park | 1291abb | 2020-09-09 17:16:54 +0900 | [diff] [blame] | 55 | enabled: false, |
| 56 | arch: { |
| 57 | x86_64: { |
| 58 | enabled: true, |
| 59 | }, |
| 60 | }, |
Dan Willemsen | f3acd61 | 2020-07-16 17:45:05 -0700 | [diff] [blame] | 61 | target: { |
| 62 | darwin: { |
| 63 | src: "darwin-x86/bin/m4", |
| 64 | }, |
| 65 | linux: { |
| 66 | src: "linux-x86/bin/m4", |
| 67 | }, |
| 68 | }, |
| 69 | } |