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