| 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/catalog/public/tools/catalog.gni") | 5 import("//services/catalog/public/tools/catalog.gni") |
| 6 import("//services/service_manager/public/service_manifest.gni") | 6 import("//services/service_manager/public/service_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 # Target that builders build. | 9 # Target that builders build. |
| 10 group("all") { | 10 group("all") { |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "test/mash_test_suite.h", | 121 "test/mash_test_suite.h", |
| 122 "test/mash_unittests.cc", | 122 "test/mash_unittests.cc", |
| 123 ] | 123 ] |
| 124 deps = [ | 124 deps = [ |
| 125 "//ash/common:unittests", | 125 "//ash/common:unittests", |
| 126 "//ash/common/test:test_support", | 126 "//ash/common/test:test_support", |
| 127 "//ash/mus:resources", | 127 "//ash/mus:resources", |
| 128 "//ash/mus:unittests", | 128 "//ash/mus:unittests", |
| 129 "//base", | 129 "//base", |
| 130 "//base/test:test_support", | 130 "//base/test:test_support", |
| 131 "//mojo/edk/system", |
| 132 "//mojo/edk/test:test_support", |
| 131 "//services/service_manager/background:main", | 133 "//services/service_manager/background:main", |
| 132 "//ui/aura", | 134 "//ui/aura", |
| 133 "//ui/base", | 135 "//ui/base", |
| 134 "//ui/compositor:test_support", | 136 "//ui/compositor:test_support", |
| 135 "//ui/gl:test_support", | 137 "//ui/gl:test_support", |
| 136 ] | 138 ] |
| 137 data_deps = [ | 139 data_deps = [ |
| 138 ":unittests_manifest", | 140 ":unittests_manifest", |
| 139 "//ash/mus:resources", | 141 "//ash/mus:resources", |
| 140 ] | 142 ] |
| 141 } | 143 } |
| 142 | 144 |
| 143 service_manifest("unittests_manifest") { | 145 service_manifest("unittests_manifest") { |
| 144 name = "mash_unittests" | 146 name = "mash_unittests" |
| 145 source = "unittests_manifest.json" | 147 source = "unittests_manifest.json" |
| 146 } | 148 } |
| 147 } | 149 } |
| OLD | NEW |