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 # Convenience meta-target for all of Blimp's production & test code. | 9 # Convenience meta-target for all of Blimp's production & test code. |
10 group("blimp") { | 10 group("blimp") { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 } | 60 } |
61 | 61 |
62 test("blimp_unittests") { | 62 test("blimp_unittests") { |
63 deps = [ | 63 deps = [ |
64 "//blimp/client:app_unit_tests", | 64 "//blimp/client:app_unit_tests", |
65 "//blimp/client:blimp_client_unit_tests", | 65 "//blimp/client:blimp_client_unit_tests", |
66 "//blimp/client:feature_unit_tests", | 66 "//blimp/client:feature_unit_tests", |
67 "//blimp/client/core:unit_tests", | 67 "//blimp/client/core:unit_tests", |
68 "//blimp/common:unit_tests", | 68 "//blimp/common:unit_tests", |
69 "//blimp/net:unit_tests", | 69 "//blimp/net:unit_tests", |
| 70 "//blimp/test:run_all_unittests", |
70 ] | 71 ] |
71 | 72 |
72 if (is_linux) { | 73 if (is_linux) { |
73 deps += [ "//blimp/engine:unit_tests" ] | 74 deps += [ "//blimp/engine:unit_tests" ] |
74 } | 75 } |
75 } | 76 } |
76 | 77 |
77 if (is_linux) { | 78 if (is_linux) { |
78 test("blimp_browsertests") { | 79 test("blimp_browsertests") { |
79 deps = [ | 80 deps = [ |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 "--filelist", | 172 "--filelist", |
172 _rebased_dockerfile, | 173 _rebased_dockerfile, |
173 _rebased_dockerfile_base, | 174 _rebased_dockerfile_base, |
174 "--manifest", | 175 "--manifest", |
175 _rebased_blimp_engine_env_tests_manifest, | 176 _rebased_blimp_engine_env_tests_manifest, |
176 "--output", | 177 "--output", |
177 rebase_path(_bundle), | 178 rebase_path(_bundle), |
178 ] | 179 ] |
179 } | 180 } |
180 } | 181 } |
OLD | NEW |