| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 'ldflags': [ '-Wl,-bbigtoc' ], | 293 'ldflags': [ '-Wl,-bbigtoc' ], |
| 294 }], | 294 }], |
| 295 ['component=="shared_library"', { | 295 ['component=="shared_library"', { |
| 296 # cctest can't be built against a shared library, so we need to | 296 # cctest can't be built against a shared library, so we need to |
| 297 # depend on the underlying static target in that case. | 297 # depend on the underlying static target in that case. |
| 298 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], | 298 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], |
| 299 }, { | 299 }, { |
| 300 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 300 'dependencies': ['../../tools/gyp/v8.gyp:v8'], |
| 301 }], | 301 }], |
| 302 ['v8_wasm!=0', { | 302 ['v8_wasm!=0', { |
| 303 'dependencies': [ | 303 'sources': [ |
| 304 '../../third_party/wasm/test/cctest/wasm/wasm.gyp:wasm_cctest' | 304 'wasm/test-run-wasm.cc', |
| 305 'wasm/test-run-wasm-module.cc', |
| 306 'wasm/test-signatures.h', |
| 305 ], | 307 ], |
| 306 }], | 308 }], |
| 307 ], | 309 ], |
| 308 }, | 310 }, |
| 309 { | 311 { |
| 310 'target_name': 'resources', | 312 'target_name': 'resources', |
| 311 'type': 'none', | 313 'type': 'none', |
| 312 'variables': { | 314 'variables': { |
| 313 'file_list': [ | 315 'file_list': [ |
| 314 '../../tools/splaytree.js', | 316 '../../tools/splaytree.js', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 '../../build/isolate.gypi', | 357 '../../build/isolate.gypi', |
| 356 ], | 358 ], |
| 357 'sources': [ | 359 'sources': [ |
| 358 'cctest.isolate', | 360 'cctest.isolate', |
| 359 ], | 361 ], |
| 360 }, | 362 }, |
| 361 ], | 363 ], |
| 362 }], | 364 }], |
| 363 ], | 365 ], |
| 364 } | 366 } |
| OLD | NEW |