| 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': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'], | 9 'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 '../..', | 44 '../..', |
| 45 ], | 45 ], |
| 46 'sources': [ | 46 'sources': [ |
| 47 'fuzzer.cc', | 47 'fuzzer.cc', |
| 48 ], | 48 ], |
| 49 }, | 49 }, |
| 50 { | 50 { |
| 51 'target_name': 'parser_fuzzer_lib', | 51 'target_name': 'parser_fuzzer_lib', |
| 52 'type': 'static_library', | 52 'type': 'static_library', |
| 53 'dependencies': [ | 53 'dependencies': [ |
| 54 'fuzzer_support', | 54 'fuzzer_support_nocomponent', |
| 55 ], | 55 ], |
| 56 'include_dirs': [ | 56 'include_dirs': [ |
| 57 '../..', | 57 '../..', |
| 58 ], | 58 ], |
| 59 'sources': [ ### gcmole(all) ### | 59 'sources': [ ### gcmole(all) ### |
| 60 'parser.cc', | 60 'parser.cc', |
| 61 ], | 61 ], |
| 62 }, | 62 }, |
| 63 { | 63 { |
| 64 'target_name': 'v8_simple_regexp_fuzzer', | 64 'target_name': 'v8_simple_regexp_fuzzer', |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 '../common/wasm/wasm-module-runner.cc', | 377 '../common/wasm/wasm-module-runner.cc', |
| 378 '../common/wasm/wasm-module-runner.h', | 378 '../common/wasm/wasm-module-runner.h', |
| 379 'wasm-section-fuzzers.cc', | 379 'wasm-section-fuzzers.cc', |
| 380 'wasm-section-fuzzers.h', | 380 'wasm-section-fuzzers.h', |
| 381 ], | 381 ], |
| 382 }, | 382 }, |
| 383 { | 383 { |
| 384 'target_name': 'fuzzer_support', | 384 'target_name': 'fuzzer_support', |
| 385 'type': 'static_library', | 385 'type': 'static_library', |
| 386 'dependencies': [ | 386 'dependencies': [ |
| 387 '../../src/v8.gyp:v8', |
| 388 '../../src/v8.gyp:v8_libplatform', |
| 389 ], |
| 390 'include_dirs': [ |
| 391 '../..', |
| 392 ], |
| 393 'sources': [ ### gcmole(all) ### |
| 394 'fuzzer-support.cc', |
| 395 'fuzzer-support.h', |
| 396 ], |
| 397 }, |
| 398 { |
| 399 'target_name': 'fuzzer_support_nocomponent', |
| 400 'type': 'static_library', |
| 401 'dependencies': [ |
| 387 '../../src/v8.gyp:v8_libplatform', | 402 '../../src/v8.gyp:v8_libplatform', |
| 388 ], | 403 ], |
| 389 'include_dirs': [ | 404 'include_dirs': [ |
| 390 '../..', | 405 '../..', |
| 391 ], | 406 ], |
| 392 'sources': [ ### gcmole(all) ### | 407 'sources': [ ### gcmole(all) ### |
| 393 'fuzzer-support.cc', | 408 'fuzzer-support.cc', |
| 394 'fuzzer-support.h', | 409 'fuzzer-support.h', |
| 395 ], | 410 ], |
| 396 'conditions': [ | 411 'conditions': [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 421 '../../gypfiles/isolate.gypi', | 436 '../../gypfiles/isolate.gypi', |
| 422 ], | 437 ], |
| 423 'sources': [ | 438 'sources': [ |
| 424 'fuzzer.isolate', | 439 'fuzzer.isolate', |
| 425 ], | 440 ], |
| 426 }, | 441 }, |
| 427 ], | 442 ], |
| 428 }], | 443 }], |
| 429 ], | 444 ], |
| 430 } | 445 } |
| OLD | NEW |