| OLD | NEW |
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 }], | 127 }], |
| 128 [ 'OS=="mac"', { | 128 [ 'OS=="mac"', { |
| 129 'sources': [ | 129 'sources': [ |
| 130 'test-platform-macos.cc', | 130 'test-platform-macos.cc', |
| 131 ], | 131 ], |
| 132 }], | 132 }], |
| 133 [ 'OS=="win"', { | 133 [ 'OS=="win"', { |
| 134 'sources': [ | 134 'sources': [ |
| 135 'test-platform-win32.cc', | 135 'test-platform-win32.cc', |
| 136 ], | 136 ], |
| 137 'msvs_settings': { |
| 138 'VCCLCompilerTool': { |
| 139 # MSVS wants this for gay-{precision,shortest}.cc. |
| 140 'AdditionalOptions': ['/bigobj'], |
| 141 }, |
| 142 }, |
| 137 }], | 143 }], |
| 138 ['component=="shared_library"', { | 144 ['component=="shared_library"', { |
| 139 # cctest can't be built against a shared library, so we need to | 145 # cctest can't be built against a shared library, so we need to |
| 140 # depend on the underlying static target in that case. | 146 # depend on the underlying static target in that case. |
| 141 'conditions': [ | 147 'conditions': [ |
| 142 ['v8_use_snapshot=="true"', { | 148 ['v8_use_snapshot=="true"', { |
| 143 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], | 149 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], |
| 144 }, | 150 }, |
| 145 { | 151 { |
| 146 'dependencies': ['../../tools/gyp/v8.gyp:v8_nosnapshot'], | 152 'dependencies': ['../../tools/gyp/v8.gyp:v8_nosnapshot'], |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 '<@(_outputs)', | 188 '<@(_outputs)', |
| 183 'TEST', # type | 189 'TEST', # type |
| 184 'off', # compression | 190 'off', # compression |
| 185 '<@(file_list)', | 191 '<@(file_list)', |
| 186 ], | 192 ], |
| 187 } | 193 } |
| 188 ], | 194 ], |
| 189 }, | 195 }, |
| 190 ], | 196 ], |
| 191 } | 197 } |
| OLD | NEW |