| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 ['OS=="aix"', { | 269 ['OS=="aix"', { |
| 270 'ldflags': [ '-Wl,-bbigtoc' ], | 270 'ldflags': [ '-Wl,-bbigtoc' ], |
| 271 }], | 271 }], |
| 272 ['component=="shared_library"', { | 272 ['component=="shared_library"', { |
| 273 # cctest can't be built against a shared library, so we need to | 273 # cctest can't be built against a shared library, so we need to |
| 274 # depend on the underlying static target in that case. | 274 # depend on the underlying static target in that case. |
| 275 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], | 275 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], |
| 276 }, { | 276 }, { |
| 277 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 277 'dependencies': ['../../tools/gyp/v8.gyp:v8'], |
| 278 }], | 278 }], |
| 279 ['v8_wasm!=0', { |
| 280 'dependencies': [ |
| 281 '../../third_party/wasm/test/cctest/wasm/wasm.gyp:wasm_cctest' |
| 282 ], |
| 283 }], |
| 279 ], | 284 ], |
| 280 }, | 285 }, |
| 281 { | 286 { |
| 282 'target_name': 'resources', | 287 'target_name': 'resources', |
| 283 'type': 'none', | 288 'type': 'none', |
| 284 'variables': { | 289 'variables': { |
| 285 'file_list': [ | 290 'file_list': [ |
| 286 '../../tools/splaytree.js', | 291 '../../tools/splaytree.js', |
| 287 '../../tools/codemap.js', | 292 '../../tools/codemap.js', |
| 288 '../../tools/csvparser.js', | 293 '../../tools/csvparser.js', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 308 '../../tools/js2c.py', | 313 '../../tools/js2c.py', |
| 309 '<@(_outputs)', | 314 '<@(_outputs)', |
| 310 'TEST', # type | 315 'TEST', # type |
| 311 '<@(file_list)', | 316 '<@(file_list)', |
| 312 ], | 317 ], |
| 313 } | 318 } |
| 314 ], | 319 ], |
| 315 }, | 320 }, |
| 316 ], | 321 ], |
| 317 } | 322 } |
| OLD | NEW |