| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 }], | 199 }], |
| 200 ['component=="shared_library"', { | 200 ['component=="shared_library"', { |
| 201 # cctest can't be built against a shared library, so we need to | 201 # cctest can't be built against a shared library, so we need to |
| 202 # depend on the underlying static target in that case. | 202 # depend on the underlying static target in that case. |
| 203 'conditions': [ | 203 'conditions': [ |
| 204 ['v8_use_snapshot=="true"', { | 204 ['v8_use_snapshot=="true"', { |
| 205 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], | 205 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], |
| 206 }, | 206 }, |
| 207 { | 207 { |
| 208 'dependencies': [ | 208 'dependencies': [ |
| 209 '../../tools/gyp/v8.gyp:v8_nosnapshot.<(v8_target_arch)', | 209 '../../tools/gyp/v8.gyp:v8_nosnapshot', |
| 210 ], | 210 ], |
| 211 }], | 211 }], |
| 212 ], | 212 ], |
| 213 }, { | 213 }, { |
| 214 'dependencies': ['../../tools/gyp/v8.gyp:v8'], | 214 'dependencies': ['../../tools/gyp/v8.gyp:v8'], |
| 215 }], | 215 }], |
| 216 ], | 216 ], |
| 217 }, | 217 }, |
| 218 { | 218 { |
| 219 'target_name': 'resources', | 219 'target_name': 'resources', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 246 '<@(_outputs)', | 246 '<@(_outputs)', |
| 247 'TEST', # type | 247 'TEST', # type |
| 248 'off', # compression | 248 'off', # compression |
| 249 '<@(file_list)', | 249 '<@(file_list)', |
| 250 ], | 250 ], |
| 251 } | 251 } |
| 252 ], | 252 ], |
| 253 }, | 253 }, |
| 254 ], | 254 ], |
| 255 } | 255 } |
| OLD | NEW |