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 # Convenience meta-target for all of Blimp's production & test code. | 7 # Convenience meta-target for all of Blimp's production & test code. |
8 group("blimp") { | 8 group("blimp") { |
9 # In spite of the name, this really just means that non-test targets | 9 # In spite of the name, this really just means that non-test targets |
10 # cannot depend on this one, and that it can depend on test targets, | 10 # cannot depend on this one, and that it can depend on test targets, |
11 # which fits how we intend to use it. | 11 # which fits how we intend to use it. |
12 testonly = true | 12 testonly = true |
13 | 13 |
14 deps = [ | 14 deps = [ |
15 ":blimp_tests", | 15 ":blimp_tests", |
16 "//blimp/client:blimp_client", | 16 "//blimp/client:blimp_client", |
17 "//blimp/common:blimp_common", | 17 "//blimp/common:blimp_common", |
18 ] | 18 ] |
19 | 19 |
20 if (is_android) { | 20 if (is_android) { |
21 deps += [ "//blimp/client:blimp_apk" ] | 21 deps += [ "//blimp/client:blimp_apk" ] |
22 } | 22 } |
23 | 23 |
24 if (is_linux) { | 24 if (is_linux) { |
25 deps += [ | 25 deps += [ |
26 "//blimp/client:blimp_shell", | |
haibinlu
2016/01/04 19:45:45
remove this?
Kevin M
2016/01/04 20:42:12
It's important to keep this in, so that the Linux
Kevin M
2016/01/04 21:09:10
Talked about this offline. Didn't see it declared
| |
26 "//blimp/engine:blimp_engine", | 27 "//blimp/engine:blimp_engine", |
27 "//blimp/engine:blimp_engine_bundle", | 28 "//blimp/engine:blimp_engine_bundle", |
28 ] | 29 ] |
29 } | 30 } |
30 | 31 |
31 if (is_linux && !is_chromeos) { | 32 if (is_linux && !is_chromeos) { |
32 deps += [ "//blimp/client:blimp_shell" ] | 33 deps += [ "//blimp/client:blimp_shell" ] |
33 } | 34 } |
34 } | 35 } |
35 | 36 |
(...skipping 23 matching lines...) Expand all Loading... | |
59 } | 60 } |
60 | 61 |
61 # TODO(GYP): Delete this after we've converted everything to GN. | 62 # TODO(GYP): Delete this after we've converted everything to GN. |
62 # The _run targets exist only for compatibility w/ GYP. | 63 # The _run targets exist only for compatibility w/ GYP. |
63 group("blimp_unittests_run") { | 64 group("blimp_unittests_run") { |
64 testonly = true | 65 testonly = true |
65 deps = [ | 66 deps = [ |
66 ":blimp_unittests", | 67 ":blimp_unittests", |
67 ] | 68 ] |
68 } | 69 } |
OLD | NEW |