| 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/init", | 16 "//mash/init", |
| 17 "//mash/login", | 17 "//mash/login", |
| 18 "//mash/screenlock", | 18 "//mash/screenlock", |
| 19 "//mash/session", | 19 "//mash/session", |
| 20 "//mash/task_viewer", | 20 "//mash/task_viewer", |
| 21 ] | 21 ] |
| 22 | 22 |
| 23 # Build on platforms that support ash. | 23 # Build on platforms that support ash. |
| 24 if (is_win || is_chromeos) { | 24 if (is_chromeos) { |
| 25 deps += [ "//mash:mash_unittests" ] | 25 deps += [ "//mash:mash_unittests" ] |
| 26 } | 26 } |
| 27 } | 27 } |
| 28 | 28 |
| 29 group("browser") { | 29 group("browser") { |
| 30 testonly = true | 30 testonly = true |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 ":all", | 33 ":all", |
| 34 "//mash/browser", | 34 "//mash/browser", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 58 data_deps = [ | 58 data_deps = [ |
| 59 ":unittests_manifest", | 59 ":unittests_manifest", |
| 60 "//ash/mus:resources", | 60 "//ash/mus:resources", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| 63 | 63 |
| 64 service_manifest("unittests_manifest") { | 64 service_manifest("unittests_manifest") { |
| 65 name = "mash_unittests" | 65 name = "mash_unittests" |
| 66 source = "unittests_manifest.json" | 66 source = "unittests_manifest.json" |
| 67 } | 67 } |
| OLD | NEW |