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/quick_launch", |
| 15 "//mash/shell", |
| 16 "//mash/task_viewer", |
| 17 "//mash/wm", |
14 ] | 18 ] |
15 } | 19 } |
16 | 20 |
17 group("tests") { | 21 group("tests") { |
18 testonly = true | 22 testonly = true |
19 | 23 |
20 deps = [ | 24 deps = [ |
21 ":mash_unittests", | 25 ":mash_unittests", |
22 "//mash/wm:tests", | 26 "//mash/wm:tests", |
23 ] | 27 ] |
24 } | 28 } |
25 | 29 |
26 test("mash_unittests") { | 30 test("mash_unittests") { |
27 deps = [ | 31 deps = [ |
28 "//base", | 32 "//base", |
29 "//base/test:run_all_unittests", | 33 "//base/test:run_all_unittests", |
30 "//base/test:test_config", | 34 "//base/test:test_config", |
31 "//base/test:test_support", | 35 "//base/test:test_support", |
32 "//mash/wm:unittests", | 36 "//mash/wm:unittests", |
33 "//mojo/platform_handle:platform_handle_impl", | 37 "//mojo/platform_handle:platform_handle_impl", |
34 ] | 38 ] |
35 } | 39 } |
OLD | NEW |