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)', | |
M-A Ruel
2015/02/03 18:54:13
keep sorted here too.
earthdok
2015/02/03 19:07:45
sorted the entire list
| |
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)', | |
90 '--config-variable', 'libpeer_target_type=<(libpeer_target_type)', | 94 '--config-variable', 'libpeer_target_type=<(libpeer_target_type)', |
91 '--config-variable', 'use_openssl=<(use_openssl)', | 95 '--config-variable', 'use_openssl=<(use_openssl)', |
92 '--config-variable', 'target_arch=<(target_arch)', | 96 '--config-variable', 'target_arch=<(target_arch)', |
93 '--config-variable', 'use_ozone=<(use_ozone)', | 97 '--config-variable', 'use_ozone=<(use_ozone)', |
94 '--config-variable', 'disable_nacl=<(disable_nacl)', | 98 '--config-variable', 'disable_nacl=<(disable_nacl)', |
95 ], | 99 ], |
96 'conditions': [ | 100 'conditions': [ |
97 # Note: When gyp merges lists, it appends them to the old value. | 101 # Note: When gyp merges lists, it appends them to the old value. |
98 ['OS=="mac"', { | 102 ['OS=="mac"', { |
99 # <(mac_product_name) can contain a space, so don't use FOO=<(FOO) | 103 # <(mac_product_name) can contain a space, so don't use FOO=<(FOO) |
(...skipping 14 matching lines...) Expand all Loading... | |
114 ], | 118 ], |
115 }, { | 119 }, { |
116 'outputs': [ | 120 'outputs': [ |
117 '<(PRODUCT_DIR)/<(RULE_INPUT_ROOT).isolated', | 121 '<(PRODUCT_DIR)/<(RULE_INPUT_ROOT).isolated', |
118 ], | 122 ], |
119 }], | 123 }], |
120 ], | 124 ], |
121 }, | 125 }, |
122 ], | 126 ], |
123 } | 127 } |
OLD | NEW |