| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |