| OLD | NEW |
| 1 # Copyright 2015 the V8 project authors. All rights reserved. | 1 # Copyright 2015 the V8 project authors. All rights reserved. |
| 2 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 { | 5 { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 # Copy the VS runtime DLLs into the isolate so that they | 7 # Copy the VS runtime DLLs into the isolate so that they |
| 8 # don't have to be preinstalled on the target machine. | 8 # don't have to be preinstalled on the target machine. |
| 9 # | 9 # |
| 10 # VS2013 runtimes | 10 # VS2013 runtimes |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 ['OS=="win" and msvs_version==2015 and component=="shared_library" and (CONF
IGURATION_NAME=="Release" or CONFIGURATION_NAME=="Release_x64")', { | 68 ['OS=="win" and msvs_version==2015 and component=="shared_library" and (CONF
IGURATION_NAME=="Release" or CONFIGURATION_NAME=="Release_x64")', { |
| 69 'variables': { | 69 'variables': { |
| 70 'files': [ | 70 'files': [ |
| 71 '<(PRODUCT_DIR)/msvcp140.dll', | 71 '<(PRODUCT_DIR)/msvcp140.dll', |
| 72 '<(PRODUCT_DIR)/vccorlib140.dll', | 72 '<(PRODUCT_DIR)/vccorlib140.dll', |
| 73 ], | 73 ], |
| 74 }, | 74 }, |
| 75 }], | 75 }], |
| 76 ], | 76 ], |
| 77 } | 77 } |
| OLD | NEW |