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/**/*"], |
| 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 | |
| 26 | prebuilt_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 | |
| 38 | prebuilt_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 | } |