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") |
| 6 |
5 group("example") { | 7 group("example") { |
6 testonly = true | 8 testonly = true |
7 | 9 |
8 deps = [ | 10 deps = [ |
9 "//components/mus/example/main", | 11 "//components/mus/example/main", |
10 "//components/mus/example/mock_sysui", | 12 "//components/mus/example/mock_sysui", |
11 "//components/mus/example/views_examples", | 13 "//components/mus/example/views_examples", |
12 "//components/mus/example/window_type_launcher", | 14 "//components/mus/example/window_type_launcher", |
13 "//components/mus/example/wm", | 15 "//components/mus/example/wm", |
14 ] | 16 ] |
15 } | 17 } |
| 18 |
| 19 test("mustash_unittests") { |
| 20 deps = [ |
| 21 "//base", |
| 22 "//base/test:run_all_unittests", |
| 23 "//base/test:test_config", |
| 24 "//base/test:test_support", |
| 25 "//components/mus/example/wm:unittests", |
| 26 ] |
| 27 } |
OLD | NEW |