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

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

Issue 2410353005: Fix generate-bytecode-expectations to work in component builds (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/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 'TEST', # type 467 'TEST', # type
468 '<@(file_list)', 468 '<@(file_list)',
469 ], 469 ],
470 } 470 }
471 ], 471 ],
472 }, 472 },
473 { 473 {
474 'target_name': 'generate-bytecode-expectations', 474 'target_name': 'generate-bytecode-expectations',
475 'type': 'executable', 475 'type': 'executable',
476 'dependencies': [ 476 'dependencies': [
477 '../../src/v8.gyp:v8',
478 '../../src/v8.gyp:v8_libbase',
477 '../../src/v8.gyp:v8_libplatform', 479 '../../src/v8.gyp:v8_libplatform',
478 ], 480 ],
479 'conditions': [
480 ['component=="shared_library"', {
481 # Same as cctest, we need to depend on the underlying static target.
482 'dependencies': ['../../src/v8.gyp:v8_maybe_snapshot'],
483 'defines': [ 'BUILDING_V8_SHARED', ]
484 }, {
485 'dependencies': ['../../src/v8.gyp:v8'],
486 }],
487 ],
488 'include_dirs+': [ 481 'include_dirs+': [
489 '../..', 482 '../..',
490 ], 483 ],
491 'sources': [ 484 'sources': [
492 'interpreter/bytecode-expectations-printer.cc', 485 'interpreter/bytecode-expectations-printer.cc',
493 'interpreter/bytecode-expectations-printer.h', 486 'interpreter/bytecode-expectations-printer.h',
494 'interpreter/generate-bytecode-expectations.cc', 487 'interpreter/generate-bytecode-expectations.cc',
495 ], 488 ],
496 }, 489 },
497 ], 490 ],
(...skipping 23 matching lines...) Expand all
521 '../../gypfiles/isolate.gypi', 514 '../../gypfiles/isolate.gypi',
522 ], 515 ],
523 'sources': [ 516 'sources': [
524 'cctest.isolate', 517 'cctest.isolate',
525 ], 518 ],
526 }, 519 },
527 ], 520 ],
528 }], 521 }],
529 ], 522 ],
530 } 523 }
OLDNEW
« no previous file with comments | « test/cctest/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698