| 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("//mojo/public/mojo_application_manifest.gni") | 5 import("//services/shell/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 ":mash_unittests", | 13 ":mash_unittests", |
| 14 "//components/leveldb", | 14 "//components/leveldb", |
| 15 "//mash/catalog_viewer", | 15 "//mash/catalog_viewer", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "//ui/base", | 48 "//ui/base", |
| 49 "//ui/compositor:test_support", | 49 "//ui/compositor:test_support", |
| 50 "//ui/gl:test_support", | 50 "//ui/gl:test_support", |
| 51 ] | 51 ] |
| 52 data_deps = [ | 52 data_deps = [ |
| 53 ":unittests_manifest", | 53 ":unittests_manifest", |
| 54 "//ash/mus:resources", | 54 "//ash/mus:resources", |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 | 57 |
| 58 mojo_application_manifest("unittests_manifest") { | 58 service_manifest("unittests_manifest") { |
| 59 type = "exe" | 59 type = "exe" |
| 60 application_name = "mash_unittests" | 60 name = "mash_unittests" |
| 61 source = "unittests_manifest.json" | 61 source = "unittests_manifest.json" |
| 62 } | 62 } |
| OLD | NEW |