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 # Target that builders build. | 7 # Target that builders build. |
8 group("all") { | 8 group("all") { |
9 testonly = true | 9 testonly = true |
10 | 10 |
11 deps = [ | 11 deps = [ |
12 ":tests", | 12 ":tests", |
13 "//mash/example", | 13 "//mash/example", |
14 "//mash/screenlock", | 14 "//mash/screenlock", |
15 "//mash/shell", | 15 "//mash/shell", |
16 "//mash/task_viewer", | 16 "//mash/task_viewer", |
17 ] | 17 ] |
18 | |
19 if (use_ash) { | |
20 deps += [ "//ash/mus" ] | |
21 } | |
sadrul
2016/02/10 23:57:14
//mash/shell adds //ash/mus as a data-dependency w
sky
2016/02/11 18:00:24
Done.
| |
18 } | 22 } |
19 | 23 |
20 group("tests") { | 24 group("tests") { |
21 testonly = true | 25 testonly = true |
22 | 26 |
23 deps = [ | 27 deps = [ |
24 ":mash_unittests", | 28 ":mash_unittests", |
25 "//mash/wm:tests", | 29 "//mash/wm:tests", |
26 ] | 30 ] |
27 } | 31 } |
28 | 32 |
29 test("mash_unittests") { | 33 test("mash_unittests") { |
30 deps = [ | 34 deps = [ |
31 "//base", | 35 "//base", |
32 "//base/test:run_all_unittests", | 36 "//base/test:run_all_unittests", |
33 "//base/test:test_config", | 37 "//base/test:test_config", |
34 "//base/test:test_support", | 38 "//base/test:test_support", |
35 "//mash/wm:unittests", | 39 "//mash/wm:unittests", |
36 "//mojo/platform_handle:platform_handle_impl", | 40 "//mojo/platform_handle:platform_handle_impl", |
37 ] | 41 ] |
38 } | 42 } |
OLD | NEW |