| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 'AdditionalOptions': ['/bigobj'], | 271 'AdditionalOptions': ['/bigobj'], |
| 272 }, | 272 }, |
| 273 }, | 273 }, |
| 274 }], | 274 }], |
| 275 ['OS=="aix"', { | 275 ['OS=="aix"', { |
| 276 'ldflags': [ '-Wl,-bbigtoc' ], | 276 'ldflags': [ '-Wl,-bbigtoc' ], |
| 277 }], | 277 }], |
| 278 ['component=="shared_library"', { | 278 ['component=="shared_library"', { |
| 279 # cctest can't be built against a shared library, so we need to | 279 # cctest can't be built against a shared library, so we need to |
| 280 # depend on the underlying static target in that case. | 280 # depend on the underlying static target in that case. |
| 281 'conditions': [ | 281 'dependencies': ['../../tools/gyp/v8.gyp:v8_maybe_snapshot'], |
| 282 ['v8_use_snapshot=="true" and v8_use_external_startup_data==0', { | |
| 283 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], | |
| 284 }], | |
| 285 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { | |
| 286 'dependencies': ['../../tools/gyp/v8.gyp:v8_external_snapshot'], | |
| 287 }], | |
| 288 ['v8_use_snapshot!="true"', { | |
| 289 'dependencies': ['../../tools/gyp/v8.gyp:v8_nosnapshot'], | |
| 290 }], | |
| 291 ], | |
| 292 }, { | 282 }, { |
| 293 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 283 'dependencies': ['../../tools/gyp/v8.gyp:v8'], |
| 294 }], | 284 }], |
| 295 ], | 285 ], |
| 296 }, | 286 }, |
| 297 { | 287 { |
| 298 'target_name': 'resources', | 288 'target_name': 'resources', |
| 299 'type': 'none', | 289 'type': 'none', |
| 300 'variables': { | 290 'variables': { |
| 301 'file_list': [ | 291 'file_list': [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 324 '../../tools/js2c.py', | 314 '../../tools/js2c.py', |
| 325 '<@(_outputs)', | 315 '<@(_outputs)', |
| 326 'TEST', # type | 316 'TEST', # type |
| 327 '<@(file_list)', | 317 '<@(file_list)', |
| 328 ], | 318 ], |
| 329 } | 319 } |
| 330 ], | 320 ], |
| 331 }, | 321 }, |
| 332 ], | 322 ], |
| 333 } | 323 } |
| OLD | NEW |