OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 script = "//blimp/tools/generate-target-manifest.py" | 160 script = "//blimp/tools/generate-target-manifest.py" |
161 args = [ | 161 args = [ |
162 "--blacklist", | 162 "--blacklist", |
163 _rebased_blimp_engine_env_tests_blacklist, | 163 _rebased_blimp_engine_env_tests_blacklist, |
164 "--runtime-deps-file", | 164 "--runtime-deps-file", |
165 _rebased_blimp_engine_env_tests_runtime_deps, | 165 _rebased_blimp_engine_env_tests_runtime_deps, |
166 "--output", | 166 "--output", |
167 _rebased_blimp_engine_env_tests_manifest, | 167 _rebased_blimp_engine_env_tests_manifest, |
168 ] | 168 ] |
169 inputs = [ | 169 inputs = [ |
| 170 _rebased_blimp_engine_env_tests_blacklist, |
170 _blimp_engine_env_tests_runtime_deps, | 171 _blimp_engine_env_tests_runtime_deps, |
171 ] | 172 ] |
172 outputs = [ | 173 outputs = [ |
173 _blimp_engine_env_tests_manifest, | 174 _blimp_engine_env_tests_manifest, |
174 ] | 175 ] |
175 | 176 |
176 # By specifying a dependency (not a data_dependency) on :blimp_tests_group, | 177 # By specifying a dependency (not a data_dependency) on :blimp_tests_group, |
177 # we can be sure that everything is built before the action is | 178 # we can be sure that everything is built before the action is |
178 # complete (though not necessarily before we generate the manifest | 179 # complete (though not necessarily before we generate the manifest |
179 # itself). | 180 # itself). |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 "--output", | 244 "--output", |
244 rebase_path(_output_path, root_build_dir), | 245 rebase_path(_output_path, root_build_dir), |
245 "--target", | 246 "--target", |
246 rebase_path(_wrapped_script, root_build_dir), | 247 rebase_path(_wrapped_script, root_build_dir), |
247 "--output-directory", | 248 "--output-directory", |
248 rebase_path(root_out_dir, root_build_dir), | 249 rebase_path(root_out_dir, root_build_dir), |
249 "--flag-name=--output-linux-directory", | 250 "--flag-name=--output-linux-directory", |
250 ] | 251 ] |
251 } | 252 } |
252 } | 253 } |
OLD | NEW |