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