| 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("//services/service_manager/public/service_manifest.gni") | 5 import("//services/service_manager/public/service_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 "//components/leveldb", | 13 "//components/leveldb", |
| 14 "//mash/catalog_viewer", | 14 "//mash/catalog_viewer", |
| 15 "//mash/example", | 15 "//mash/example", |
| 16 "//mash/session", | 16 "//mash/session", |
| 17 "//mash/simple_wm", | 17 "//mash/simple_wm", |
| 18 "//mash/task_viewer", | 18 "//mash/task_viewer", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 # Build on platforms that support ash. | 21 # Build on platforms that support ash. |
| 22 if (is_chromeos) { | 22 if (is_chromeos) { |
| 23 deps += [ "//mash:mash_unittests" ] | 23 deps += [ |
| 24 "//ash/autoclick/mus:accessibility_autoclick", |
| 25 "//ash/touch_hud/mus:touch_hud", |
| 26 "//mash:mash_unittests", |
| 27 ] |
| 24 } | 28 } |
| 25 } | 29 } |
| 26 | 30 |
| 27 group("browser") { | 31 group("browser") { |
| 28 testonly = true | 32 testonly = true |
| 29 | 33 |
| 30 deps = [ | 34 deps = [ |
| 31 ":all", | 35 ":all", |
| 32 "//mash/browser", | 36 "//mash/browser", |
| 33 "//mash/webtest", | 37 "//mash/webtest", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 59 ":unittests_manifest", | 63 ":unittests_manifest", |
| 60 "//ash/mus:resources", | 64 "//ash/mus:resources", |
| 61 ] | 65 ] |
| 62 } | 66 } |
| 63 | 67 |
| 64 service_manifest("unittests_manifest") { | 68 service_manifest("unittests_manifest") { |
| 65 name = "mash_unittests" | 69 name = "mash_unittests" |
| 66 source = "unittests_manifest.json" | 70 source = "unittests_manifest.json" |
| 67 } | 71 } |
| 68 } | 72 } |
| OLD | NEW |