| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 # Convenience meta-target for all of Blimp's production & test code. | 8 # Convenience meta-target for all of Blimp's production & test code. |
| 9 group("blimp") { | 9 group("blimp") { |
| 10 # In spite of the name, this really just means that non-test targets | 10 # In spite of the name, this really just means that non-test targets |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 if (is_android) { | 64 if (is_android) { |
| 65 deps += [ "//blimp/client:blimp_unittests_java_deps" ] | 65 deps += [ "//blimp/client:blimp_unittests_java_deps" ] |
| 66 } | 66 } |
| 67 } | 67 } |
| 68 | 68 |
| 69 if (is_linux) { | 69 if (is_linux) { |
| 70 test("blimp_browsertests") { | 70 test("blimp_browsertests") { |
| 71 deps = [ | 71 deps = [ |
| 72 "//blimp/engine:browser_tests", | 72 "//blimp/engine:browser_tests", |
| 73 "//tools/xdisplaycheck", | |
| 74 ] | 73 ] |
| 75 data = [ | 74 data = [ |
| 76 "test/data/", | 75 "test/data/", |
| 77 ] | 76 ] |
| 78 } | 77 } |
| 79 | 78 |
| 80 _blimp_engine_env_tests_runtime_deps = | 79 _blimp_engine_env_tests_runtime_deps = |
| 81 "$root_gen_dir/blimp-tests.runtime_deps" | 80 "$root_gen_dir/blimp-tests.runtime_deps" |
| 82 _rebased_blimp_engine_env_tests_runtime_deps = | 81 _rebased_blimp_engine_env_tests_runtime_deps = |
| 83 rebase_path(_blimp_engine_env_tests_runtime_deps, root_out_dir) | 82 rebase_path(_blimp_engine_env_tests_runtime_deps, root_out_dir) |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 "--output", | 203 "--output", |
| 205 rebase_path(_output_path, root_build_dir), | 204 rebase_path(_output_path, root_build_dir), |
| 206 "--target", | 205 "--target", |
| 207 rebase_path(_wrapped_script, root_build_dir), | 206 rebase_path(_wrapped_script, root_build_dir), |
| 208 "--output-directory", | 207 "--output-directory", |
| 209 rebase_path(root_out_dir, root_build_dir), | 208 rebase_path(root_out_dir, root_build_dir), |
| 210 "--flag-name=--output-linux-directory", | 209 "--flag-name=--output-linux-directory", |
| 211 ] | 210 ] |
| 212 } | 211 } |
| 213 } | 212 } |
| OLD | NEW |