| 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 19 matching lines...) Expand all Loading... |
| 30 'v8_code': 1, | 30 'v8_code': 1, |
| 31 'generated_file': '<(SHARED_INTERMEDIATE_DIR)/resources.cc', | 31 'generated_file': '<(SHARED_INTERMEDIATE_DIR)/resources.cc', |
| 32 }, | 32 }, |
| 33 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], | 33 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], |
| 34 'targets': [ | 34 'targets': [ |
| 35 { | 35 { |
| 36 'target_name': 'cctest', | 36 'target_name': 'cctest', |
| 37 'type': 'executable', | 37 'type': 'executable', |
| 38 'dependencies': [ | 38 'dependencies': [ |
| 39 'resources', | 39 'resources', |
| 40 '../../tools/gyp/v8.gyp:v8_libplatform', | 40 '../../src/v8.gyp:v8_libplatform', |
| 41 ], | 41 ], |
| 42 'include_dirs': [ | 42 'include_dirs': [ |
| 43 '../..', | 43 '../..', |
| 44 ], | 44 ], |
| 45 'sources': [ ### gcmole(all) ### | 45 'sources': [ ### gcmole(all) ### |
| 46 '<(generated_file)', | 46 '<(generated_file)', |
| 47 'compiler/c-signature.h', | 47 'compiler/c-signature.h', |
| 48 'compiler/codegen-tester.cc', | 48 'compiler/codegen-tester.cc', |
| 49 'compiler/codegen-tester.h', | 49 'compiler/codegen-tester.h', |
| 50 'compiler/function-tester.h', | 50 'compiler/function-tester.h', |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 # disable fmadd/fmsub so that expected results match generated code in | 338 # disable fmadd/fmsub so that expected results match generated code in |
| 339 # RunFloat64MulAndFloat64Add1 and friends. | 339 # RunFloat64MulAndFloat64Add1 and friends. |
| 340 'cflags': ['-ffp-contract=off'], | 340 'cflags': ['-ffp-contract=off'], |
| 341 }], | 341 }], |
| 342 ['OS=="aix"', { | 342 ['OS=="aix"', { |
| 343 'ldflags': [ '-Wl,-bbigtoc' ], | 343 'ldflags': [ '-Wl,-bbigtoc' ], |
| 344 }], | 344 }], |
| 345 ['component=="shared_library"', { | 345 ['component=="shared_library"', { |
| 346 # cctest can't be built against a shared library, so we need to | 346 # cctest can't be built against a shared library, so we need to |
| 347 # depend on the underlying static target in that case. | 347 # depend on the underlying static target in that case. |
| 348 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], | 348 'dependencies': ['../../src/v8.gyp:v8_maybe_snapshot'], |
| 349 }, { | 349 }, { |
| 350 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 350 'dependencies': ['../../src/v8.gyp:v8'], |
| 351 }], | 351 }], |
| 352 ], | 352 ], |
| 353 }, | 353 }, |
| 354 { | 354 { |
| 355 'target_name': 'resources', | 355 'target_name': 'resources', |
| 356 'type': 'none', | 356 'type': 'none', |
| 357 'variables': { | 357 'variables': { |
| 358 'file_list': [ | 358 'file_list': [ |
| 359 '../../tools/splaytree.js', | 359 '../../tools/splaytree.js', |
| 360 '../../tools/codemap.js', | 360 '../../tools/codemap.js', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 383 'TEST', # type | 383 'TEST', # type |
| 384 '<@(file_list)', | 384 '<@(file_list)', |
| 385 ], | 385 ], |
| 386 } | 386 } |
| 387 ], | 387 ], |
| 388 }, | 388 }, |
| 389 { | 389 { |
| 390 'target_name': 'generate-bytecode-expectations', | 390 'target_name': 'generate-bytecode-expectations', |
| 391 'type': 'executable', | 391 'type': 'executable', |
| 392 'dependencies': [ | 392 'dependencies': [ |
| 393 '../../tools/gyp/v8.gyp:v8_libplatform', | 393 '../../src/v8.gyp:v8_libplatform', |
| 394 ], | 394 ], |
| 395 'conditions': [ | 395 'conditions': [ |
| 396 ['component=="shared_library"', { | 396 ['component=="shared_library"', { |
| 397 # Same as cctest, we need to depend on the underlying static target. | 397 # Same as cctest, we need to depend on the underlying static target. |
| 398 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], | 398 'dependencies': ['../../src/v8.gyp:v8_maybe_snapshot'], |
| 399 }, { | 399 }, { |
| 400 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 400 'dependencies': ['../../src/v8.gyp:v8'], |
| 401 }], | 401 }], |
| 402 ], | 402 ], |
| 403 'include_dirs+': [ | 403 'include_dirs+': [ |
| 404 '../..', | 404 '../..', |
| 405 ], | 405 ], |
| 406 'sources': [ | 406 'sources': [ |
| 407 'interpreter/bytecode-expectations-printer.cc', | 407 'interpreter/bytecode-expectations-printer.cc', |
| 408 'interpreter/bytecode-expectations-printer.h', | 408 'interpreter/bytecode-expectations-printer.h', |
| 409 'interpreter/generate-bytecode-expectations.cc', | 409 'interpreter/generate-bytecode-expectations.cc', |
| 410 ], | 410 ], |
| (...skipping 25 matching lines...) Expand all Loading... |
| 436 '../../build/isolate.gypi', | 436 '../../build/isolate.gypi', |
| 437 ], | 437 ], |
| 438 'sources': [ | 438 'sources': [ |
| 439 'cctest.isolate', | 439 'cctest.isolate', |
| 440 ], | 440 ], |
| 441 }, | 441 }, |
| 442 ], | 442 ], |
| 443 }], | 443 }], |
| 444 ], | 444 ], |
| 445 } | 445 } |
| OLD | NEW |