| OLD | NEW |
| 1 # Copyright 2016 the V8 project authors. All rights reserved. | 1 # Copyright 2016 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'v8_code': 1, | 7 'v8_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], | 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 'fuzzer_support', | 28 'fuzzer_support', |
| 29 ], | 29 ], |
| 30 'include_dirs': [ | 30 'include_dirs': [ |
| 31 '../..', | 31 '../..', |
| 32 ], | 32 ], |
| 33 'sources': [ ### gcmole(all) ### | 33 'sources': [ ### gcmole(all) ### |
| 34 'parser.cc', | 34 'parser.cc', |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 { | 37 { |
| 38 'target_name': 'regexp_fuzzer', |
| 39 'type': 'executable', |
| 40 'dependencies': [ |
| 41 'regexp_fuzzer_lib', |
| 42 ], |
| 43 'include_dirs': [ |
| 44 '../..', |
| 45 ], |
| 46 'sources': [ |
| 47 'fuzzer.cc', |
| 48 ], |
| 49 }, |
| 50 { |
| 51 'target_name': 'regexp_fuzzer_lib', |
| 52 'type': 'static_library', |
| 53 'dependencies': [ |
| 54 'fuzzer_support', |
| 55 ], |
| 56 'include_dirs': [ |
| 57 '../..', |
| 58 ], |
| 59 'sources': [ ### gcmole(all) ### |
| 60 'regexp.cc', |
| 61 ], |
| 62 }, |
| 63 { |
| 38 'target_name': 'fuzzer_support', | 64 'target_name': 'fuzzer_support', |
| 39 'type': 'static_library', | 65 'type': 'static_library', |
| 40 'dependencies': [ | 66 'dependencies': [ |
| 41 '../../tools/gyp/v8.gyp:v8_libplatform', | 67 '../../tools/gyp/v8.gyp:v8_libplatform', |
| 42 ], | 68 ], |
| 43 'include_dirs': [ | 69 'include_dirs': [ |
| 44 '../..', | 70 '../..', |
| 45 ], | 71 ], |
| 46 'sources': [ ### gcmole(all) ### | 72 'sources': [ ### gcmole(all) ### |
| 47 'fuzzer-support.cc', | 73 'fuzzer-support.cc', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 71 '../../build/isolate.gypi', | 97 '../../build/isolate.gypi', |
| 72 ], | 98 ], |
| 73 'sources': [ | 99 'sources': [ |
| 74 'fuzzer.isolate', | 100 'fuzzer.isolate', |
| 75 ], | 101 ], |
| 76 }, | 102 }, |
| 77 ], | 103 ], |
| 78 }], | 104 }], |
| 79 ], | 105 ], |
| 80 } | 106 } |
| OLD | NEW |