| 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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', | 387 '../../src/v8.gyp:v8', |
| 388 '../../src/v8.gyp:v8_libbase', | |
| 389 '../../src/v8.gyp:v8_libplatform', | 388 '../../src/v8.gyp:v8_libplatform', |
| 390 ], | 389 ], |
| 391 'include_dirs': [ | 390 'include_dirs': [ |
| 392 '../..', | 391 '../..', |
| 393 ], | 392 ], |
| 394 'sources': [ ### gcmole(all) ### | 393 'sources': [ ### gcmole(all) ### |
| 395 'fuzzer-support.cc', | 394 'fuzzer-support.cc', |
| 396 'fuzzer-support.h', | 395 'fuzzer-support.h', |
| 397 ], | 396 ], |
| 398 }, | 397 }, |
| 399 { | 398 { |
| 400 'target_name': 'fuzzer_support_nocomponent', | 399 'target_name': 'fuzzer_support_nocomponent', |
| 401 'type': 'static_library', | 400 'type': 'static_library', |
| 402 'dependencies': [ | 401 'dependencies': [ |
| 403 '../../src/v8.gyp:v8_libbase', | |
| 404 '../../src/v8.gyp:v8_libplatform', | 402 '../../src/v8.gyp:v8_libplatform', |
| 405 ], | 403 ], |
| 406 'include_dirs': [ | 404 'include_dirs': [ |
| 407 '../..', | 405 '../..', |
| 408 ], | 406 ], |
| 409 'sources': [ ### gcmole(all) ### | 407 'sources': [ ### gcmole(all) ### |
| 410 'fuzzer-support.cc', | 408 'fuzzer-support.cc', |
| 411 'fuzzer-support.h', | 409 'fuzzer-support.h', |
| 412 ], | 410 ], |
| 413 'conditions': [ | 411 'conditions': [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 438 '../../gypfiles/isolate.gypi', | 436 '../../gypfiles/isolate.gypi', |
| 439 ], | 437 ], |
| 440 'sources': [ | 438 'sources': [ |
| 441 'fuzzer.isolate', | 439 'fuzzer.isolate', |
| 442 ], | 440 ], |
| 443 }, | 441 }, |
| 444 ], | 442 ], |
| 445 }], | 443 }], |
| 446 ], | 444 ], |
| 447 } | 445 } |
| OLD | NEW |