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 |
(...skipping 10 matching lines...) Expand all Loading... |
21 ] | 21 ] |
22 } | 22 } |
23 | 23 |
24 test("mash_unittests") { | 24 test("mash_unittests") { |
25 deps = [ | 25 deps = [ |
26 "//base", | 26 "//base", |
27 "//base/test:test_config", | 27 "//base/test:test_config", |
28 "//base/test:test_support", | 28 "//base/test:test_support", |
29 "//mash/wm:unittests", | 29 "//mash/wm:unittests", |
30 "//mojo/platform_handle:platform_handle_impl", | 30 "//mojo/platform_handle:platform_handle_impl", |
31 "//mojo/shell/background:main", | 31 "//services/shell/background:main", |
32 "//mojo/shell/public/cpp/test:run_all_shelltests", | 32 "//services/shell/public/cpp/test:run_all_shelltests", |
33 ] | 33 ] |
34 data_deps = [ | 34 data_deps = [ |
35 ":unittests_manifest", | 35 ":unittests_manifest", |
36 ] | 36 ] |
37 } | 37 } |
38 | 38 |
39 mojo_application_manifest("unittests_manifest") { | 39 mojo_application_manifest("unittests_manifest") { |
40 type = "exe" | 40 type = "exe" |
41 application_name = "mash_unittests" | 41 application_name = "mash_unittests" |
42 source = "unittests_manifest.json" | 42 source = "unittests_manifest.json" |
43 } | 43 } |
OLD | NEW |