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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 # Metatarget for all of Blimp's feature code. | 7 # Metatarget for all of Blimp's feature code. |
8 group("blimp") { | 8 group("blimp") { |
9 deps = [ | 9 deps = [ |
10 "//blimp/client:blimp_client", | 10 "//blimp/client:blimp_client", |
(...skipping 17 matching lines...) Expand all Loading... |
28 ":blimp_unittests", | 28 ":blimp_unittests", |
29 ] | 29 ] |
30 | 30 |
31 if (is_android) { | 31 if (is_android) { |
32 deps += [ "//blimp/client:blimp_test_apk" ] | 32 deps += [ "//blimp/client:blimp_test_apk" ] |
33 } | 33 } |
34 } | 34 } |
35 | 35 |
36 test("blimp_unittests") { | 36 test("blimp_unittests") { |
37 deps = [ | 37 deps = [ |
| 38 "//blimp/client:unit_tests", |
| 39 "//blimp/engine:unit_tests", |
38 "//blimp/net:unit_tests", | 40 "//blimp/net:unit_tests", |
39 ] | 41 ] |
40 } | 42 } |
41 | 43 |
42 # TODO(GYP): Delete this after we've converted everything to GN. | 44 # TODO(GYP): Delete this after we've converted everything to GN. |
43 # The _run targets exist only for compatibility w/ GYP. | 45 # The _run targets exist only for compatibility w/ GYP. |
44 group("blimp_unittests_run") { | 46 group("blimp_unittests_run") { |
45 testonly = true | 47 testonly = true |
46 deps = [ | 48 deps = [ |
47 ":blimp_unittests", | 49 ":blimp_unittests", |
48 ] | 50 ] |
49 } | 51 } |
OLD | NEW |