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", |
38 "//blimp/net:unit_tests", | 39 "//blimp/net:unit_tests", |
39 ] | 40 ] |
| 41 |
| 42 if (is_linux) { |
| 43 deps += [ "//blimp/engine:unit_tests" ] |
| 44 } |
40 } | 45 } |
41 | 46 |
42 # TODO(GYP): Delete this after we've converted everything to GN. | 47 # TODO(GYP): Delete this after we've converted everything to GN. |
43 # The _run targets exist only for compatibility w/ GYP. | 48 # The _run targets exist only for compatibility w/ GYP. |
44 group("blimp_unittests_run") { | 49 group("blimp_unittests_run") { |
45 testonly = true | 50 testonly = true |
46 deps = [ | 51 deps = [ |
47 ":blimp_unittests", | 52 ":blimp_unittests", |
48 ] | 53 ] |
49 } | 54 } |
OLD | NEW |