| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # This file is meant to be included into a target to provide a rule | 5 # This file is meant to be included into a target to provide a rule |
| 6 # to "build" .isolate files into a .isolated file. | 6 # to "build" .isolate files into a .isolated file. |
| 7 # | 7 # |
| 8 # To use this, create a gyp target with the following form: | 8 # To use this, create a gyp target with the following form: |
| 9 # 'conditions': [ | 9 # 'conditions': [ |
| 10 # ['test_isolation_mode != "noop"', { | 10 # ['test_isolation_mode != "noop"', { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 'internal_gles2_conform_tests=<(internal_gles2_conform_tests)', | 83 'internal_gles2_conform_tests=<(internal_gles2_conform_tests)', |
| 84 '--config-variable', 'kasko=<(kasko)', | 84 '--config-variable', 'kasko=<(kasko)', |
| 85 '--config-variable', 'lsan=<(lsan)', | 85 '--config-variable', 'lsan=<(lsan)', |
| 86 '--config-variable', 'msan=<(msan)', | 86 '--config-variable', 'msan=<(msan)', |
| 87 '--config-variable', 'target_arch=<(target_arch)', | 87 '--config-variable', 'target_arch=<(target_arch)', |
| 88 '--config-variable', 'tsan=<(tsan)', | 88 '--config-variable', 'tsan=<(tsan)', |
| 89 '--config-variable', 'use_custom_libcxx=<(use_custom_libcxx)', | 89 '--config-variable', 'use_custom_libcxx=<(use_custom_libcxx)', |
| 90 '--config-variable', 'use_instrumented_libraries=<(use_instrumented_libr
aries)', | 90 '--config-variable', 'use_instrumented_libraries=<(use_instrumented_libr
aries)', |
| 91 '--config-variable', | 91 '--config-variable', |
| 92 'use_prebuilt_instrumented_libraries=<(use_prebuilt_instrumented_librari
es)', | 92 'use_prebuilt_instrumented_libraries=<(use_prebuilt_instrumented_librari
es)', |
| 93 '--config-variable', 'use_openssl=<(use_openssl)', | |
| 94 '--config-variable', 'use_ozone=<(use_ozone)', | 93 '--config-variable', 'use_ozone=<(use_ozone)', |
| 95 '--config-variable', 'use_x11=<(use_x11)', | 94 '--config-variable', 'use_x11=<(use_x11)', |
| 96 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta
rtup_data)', | 95 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta
rtup_data)', |
| 97 ], | 96 ], |
| 98 'conditions': [ | 97 'conditions': [ |
| 99 # Note: When gyp merges lists, it appends them to the old value. | 98 # Note: When gyp merges lists, it appends them to the old value. |
| 100 # Extra variables are replaced on the 'command' entry and on paths in | 99 # Extra variables are replaced on the 'command' entry and on paths in |
| 101 # the .isolate file but are not considered relative paths. | 100 # the .isolate file but are not considered relative paths. |
| 102 ['OS=="mac"', { | 101 ['OS=="mac"', { |
| 103 'action': [ | 102 'action': [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 121 ], | 120 ], |
| 122 }, { | 121 }, { |
| 123 'action': [ | 122 'action': [ |
| 124 '--config-variable', 'msvs_version=0', | 123 '--config-variable', 'msvs_version=0', |
| 125 ], | 124 ], |
| 126 }], | 125 }], |
| 127 ], | 126 ], |
| 128 }, | 127 }, |
| 129 ], | 128 ], |
| 130 } | 129 } |
| OLD | NEW |