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("//mojo/public/mojo_application_manifest.gni") | 5 import("//mojo/public/mojo_application_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 ":mash_unittests", | 13 ":mash_unittests", |
14 "//components/leveldb", | 14 "//components/leveldb", |
15 "//mash/browser", | 15 "//mash/browser", |
16 "//mash/catalog_viewer", | 16 "//mash/catalog_viewer", |
17 "//mash/example", | 17 "//mash/example", |
18 "//mash/init", | 18 "//mash/init", |
19 "//mash/login", | 19 "//mash/login", |
20 "//mash/screenlock", | 20 "//mash/screenlock", |
21 "//mash/session", | 21 "//mash/session", |
22 "//mash/task_viewer", | 22 "//mash/task_viewer", |
| 23 "//mash/webtest", |
23 ] | 24 ] |
24 } | 25 } |
25 | 26 |
26 test("mash_unittests") { | 27 test("mash_unittests") { |
27 deps = [ | 28 deps = [ |
28 "//ash/mus:unittests", | 29 "//ash/mus:unittests", |
29 "//base", | 30 "//base", |
30 "//base/test:test_config", | 31 "//base/test:test_config", |
31 "//base/test:test_support", | 32 "//base/test:test_support", |
32 "//mash/wm:unittests", | 33 "//mash/wm:unittests", |
33 "//mojo/platform_handle:platform_handle_impl", | 34 "//mojo/platform_handle:platform_handle_impl", |
34 "//services/shell/background:main", | 35 "//services/shell/background:main", |
35 "//services/shell/public/cpp/test:run_all_shelltests", | 36 "//services/shell/public/cpp/test:run_all_shelltests", |
36 ] | 37 ] |
37 data_deps = [ | 38 data_deps = [ |
38 ":unittests_manifest", | 39 ":unittests_manifest", |
39 ] | 40 ] |
40 } | 41 } |
41 | 42 |
42 mojo_application_manifest("unittests_manifest") { | 43 mojo_application_manifest("unittests_manifest") { |
43 type = "exe" | 44 type = "exe" |
44 application_name = "mash_unittests" | 45 application_name = "mash_unittests" |
45 source = "unittests_manifest.json" | 46 source = "unittests_manifest.json" |
46 } | 47 } |
OLD | NEW |