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("//services/service_manager/public/service_manifest.gni") | 5 import("//services/service_manager/public/service_manifest.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 # Target that builders build. | 8 # Target that builders build. |
9 group("all") { | 9 group("all") { |
10 testonly = true | 10 testonly = true |
11 | 11 |
12 deps = [ | 12 deps = [ |
13 "//components/leveldb", | 13 "//components/leveldb", |
14 "//mash/catalog_viewer", | 14 "//mash/catalog_viewer", |
15 "//mash/example", | 15 "//mash/example", |
16 "//mash/init", | 16 "//mash/init", |
17 "//mash/login", | 17 "//mash/login", |
18 "//mash/screenlock", | 18 "//mash/screenlock", |
19 "//mash/session", | 19 "//mash/session", |
| 20 "//mash/simple_wm", |
20 "//mash/task_viewer", | 21 "//mash/task_viewer", |
21 ] | 22 ] |
22 | 23 |
23 # Build on platforms that support ash. | 24 # Build on platforms that support ash. |
24 if (is_win || is_chromeos) { | 25 if (is_win || is_chromeos) { |
25 deps += [ "//mash:mash_unittests" ] | 26 deps += [ "//mash:mash_unittests" ] |
26 } | 27 } |
27 } | 28 } |
28 | 29 |
29 group("browser") { | 30 group("browser") { |
(...skipping 28 matching lines...) Expand all Loading... |
58 data_deps = [ | 59 data_deps = [ |
59 ":unittests_manifest", | 60 ":unittests_manifest", |
60 "//ash/mus:resources", | 61 "//ash/mus:resources", |
61 ] | 62 ] |
62 } | 63 } |
63 | 64 |
64 service_manifest("unittests_manifest") { | 65 service_manifest("unittests_manifest") { |
65 name = "mash_unittests" | 66 name = "mash_unittests" |
66 source = "unittests_manifest.json" | 67 source = "unittests_manifest.json" |
67 } | 68 } |
OLD | NEW |