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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 '--path-variable', 'DEPTH', '<(DEPTH)', | 70 '--path-variable', 'DEPTH', '<(DEPTH)', |
71 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ', | 71 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ', |
72 | 72 |
73 # Extra variables are replaced on the 'command' entry and on paths in | 73 # Extra variables are replaced on the 'command' entry and on paths in |
74 # the .isolate file but are not considered relative paths. | 74 # the .isolate file but are not considered relative paths. |
75 '--extra-variable', 'version_full=<(version_full)', | 75 '--extra-variable', 'version_full=<(version_full)', |
76 | 76 |
77 '--config-variable', 'OS=<(OS)', | 77 '--config-variable', 'OS=<(OS)', |
78 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)', | 78 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)', |
79 '--config-variable', 'asan=<(asan)', | 79 '--config-variable', 'asan=<(asan)', |
| 80 '--config-variable', 'lsan=<(lsan)', |
| 81 '--config-variable', 'msan=<(msan)', |
| 82 '--config-variable', 'tsan=<(tsan)', |
| 83 '--config-variable', 'use_custom_libcxx=<(use_custom_libcxx)', |
| 84 '--config-variable', 'use_instrumented_libraries=<(use_instrumented_libr
aries)', |
80 '--config-variable', 'chromeos=<(chromeos)', | 85 '--config-variable', 'chromeos=<(chromeos)', |
81 '--config-variable', 'component=<(component)', | 86 '--config-variable', 'component=<(component)', |
82 '--config-variable', 'fastbuild=<(fastbuild)', | 87 '--config-variable', 'fastbuild=<(fastbuild)', |
83 # TODO(kbr): move this to chrome_tests.gypi:gles2_conform_tests_run | 88 # TODO(kbr): move this to chrome_tests.gypi:gles2_conform_tests_run |
84 # once support for user-defined config variables is added. | 89 # once support for user-defined config variables is added. |
85 '--config-variable', | 90 '--config-variable', |
86 'internal_gles2_conform_tests=<(internal_gles2_conform_tests)', | 91 'internal_gles2_conform_tests=<(internal_gles2_conform_tests)', |
87 '--config-variable', 'icu_use_data_file_flag=<(icu_use_data_file_flag)', | 92 '--config-variable', 'icu_use_data_file_flag=<(icu_use_data_file_flag)', |
88 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta
rtup_data)', | 93 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta
rtup_data)', |
89 '--config-variable', 'lsan=<(lsan)', | 94 '--config-variable', 'lsan=<(lsan)', |
(...skipping 24 matching lines...) Expand all Loading... |
114 ], | 119 ], |
115 }, { | 120 }, { |
116 'outputs': [ | 121 'outputs': [ |
117 '<(PRODUCT_DIR)/<(RULE_INPUT_ROOT).isolated', | 122 '<(PRODUCT_DIR)/<(RULE_INPUT_ROOT).isolated', |
118 ], | 123 ], |
119 }], | 124 }], |
120 ], | 125 ], |
121 }, | 126 }, |
122 ], | 127 ], |
123 } | 128 } |
OLD | NEW |