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