Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: test/fuzzer/fuzzer.gyp

Issue 2399323002: Reland of land "Turn libbase into a component" (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/cctest/cctest.gyp ('k') | test/unittests/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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',
388 '../../src/v8.gyp:v8_libplatform', 389 '../../src/v8.gyp:v8_libplatform',
389 ], 390 ],
390 'include_dirs': [ 391 'include_dirs': [
391 '../..', 392 '../..',
392 ], 393 ],
393 'sources': [ ### gcmole(all) ### 394 'sources': [ ### gcmole(all) ###
394 'fuzzer-support.cc', 395 'fuzzer-support.cc',
395 'fuzzer-support.h', 396 'fuzzer-support.h',
396 ], 397 ],
397 }, 398 },
398 { 399 {
399 'target_name': 'fuzzer_support_nocomponent', 400 'target_name': 'fuzzer_support_nocomponent',
400 'type': 'static_library', 401 'type': 'static_library',
401 'dependencies': [ 402 'dependencies': [
403 '../../src/v8.gyp:v8_libbase',
402 '../../src/v8.gyp:v8_libplatform', 404 '../../src/v8.gyp:v8_libplatform',
403 ], 405 ],
404 'include_dirs': [ 406 'include_dirs': [
405 '../..', 407 '../..',
406 ], 408 ],
407 'sources': [ ### gcmole(all) ### 409 'sources': [ ### gcmole(all) ###
408 'fuzzer-support.cc', 410 'fuzzer-support.cc',
409 'fuzzer-support.h', 411 'fuzzer-support.h',
410 ], 412 ],
411 'conditions': [ 413 'conditions': [
(...skipping 24 matching lines...) Expand all
436 '../../gypfiles/isolate.gypi', 438 '../../gypfiles/isolate.gypi',
437 ], 439 ],
438 'sources': [ 440 'sources': [
439 'fuzzer.isolate', 441 'fuzzer.isolate',
440 ], 442 ],
441 }, 443 },
442 ], 444 ],
443 }], 445 }],
444 ], 446 ],
445 } 447 }
OLDNEW
« no previous file with comments | « test/cctest/cctest.gyp ('k') | test/unittests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698