| OLD | NEW |
| 1 # Copyright 2015 the V8 project authors. All rights reserved. | 1 # Copyright 2015 the V8 project authors. All rights reserved. |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 # This file is meant to be included into a target to provide a rule | 6 # This file is meant to be included into a target to provide a rule |
| 7 # to "build" .isolate files into a .isolated file. | 7 # to "build" .isolate files into a .isolated file. |
| 8 # | 8 # |
| 9 # To use this, create a gyp target with the following form: | 9 # To use this, create a gyp target with the following form: |
| 10 # 'conditions': [ | 10 # 'conditions': [ |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 '--config-variable', 'sanitizer_coverage=<(sanitizer_coverage)', | 80 '--config-variable', 'sanitizer_coverage=<(sanitizer_coverage)', |
| 81 '--config-variable', 'component=<(component)', | 81 '--config-variable', 'component=<(component)', |
| 82 '--config-variable', 'target_arch=<(target_arch)', | 82 '--config-variable', 'target_arch=<(target_arch)', |
| 83 '--config-variable', 'use_custom_libcxx=<(use_custom_libcxx)', | 83 '--config-variable', 'use_custom_libcxx=<(use_custom_libcxx)', |
| 84 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta
rtup_data)', | 84 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta
rtup_data)', |
| 85 '--config-variable', 'v8_use_snapshot=<(v8_use_snapshot)', | 85 '--config-variable', 'v8_use_snapshot=<(v8_use_snapshot)', |
| 86 ], | 86 ], |
| 87 'conditions': [ | 87 'conditions': [ |
| 88 ['OS=="win"', { | 88 ['OS=="win"', { |
| 89 'action': [ | 89 'action': [ |
| 90 '--config-variable', 'msvs_version=<(MSVS_VERSION)', | 90 '--config-variable', 'msvs_version=2013', |
| 91 ], | 91 ], |
| 92 }, { | 92 }, { |
| 93 'action': [ | 93 'action': [ |
| 94 '--config-variable', 'msvs_version=0', | 94 '--config-variable', 'msvs_version=0', |
| 95 ], | 95 ], |
| 96 }], | 96 }], |
| 97 ], | 97 ], |
| 98 }, | 98 }, |
| 99 ], | 99 ], |
| 100 } | 100 } |
| OLD | NEW |