| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "test/mash_test_suite.h", | 124 "test/mash_test_suite.h", |
| 125 "test/mash_unittests.cc", | 125 "test/mash_unittests.cc", |
| 126 ] | 126 ] |
| 127 deps = [ | 127 deps = [ |
| 128 "//ash/common:unittests", | 128 "//ash/common:unittests", |
| 129 "//ash/common/test:test_support", | 129 "//ash/common/test:test_support", |
| 130 "//ash/mus:resources", | 130 "//ash/mus:resources", |
| 131 "//ash/mus:unittests", | 131 "//ash/mus:unittests", |
| 132 "//base", | 132 "//base", |
| 133 "//base/test:test_support", | 133 "//base/test:test_support", |
| 134 "//cc", |
| 135 "//cc:test_support", |
| 134 "//services/service_manager/background:main", | 136 "//services/service_manager/background:main", |
| 135 "//ui/aura", | 137 "//ui/aura", |
| 136 "//ui/base", | 138 "//ui/base", |
| 137 "//ui/compositor:test_support", | 139 "//ui/compositor:test_support", |
| 138 "//ui/gl:test_support", | 140 "//ui/gl:test_support", |
| 139 ] | 141 ] |
| 140 data_deps = [ | 142 data_deps = [ |
| 141 ":unittests_manifest", | 143 ":unittests_manifest", |
| 142 "//ash/mus:resources", | 144 "//ash/mus:resources", |
| 143 ] | 145 ] |
| 144 } | 146 } |
| 145 | 147 |
| 146 service_manifest("unittests_manifest") { | 148 service_manifest("unittests_manifest") { |
| 147 name = "mash_unittests" | 149 name = "mash_unittests" |
| 148 source = "unittests_manifest.json" | 150 source = "unittests_manifest.json" |
| 149 } | 151 } |
| 150 } | 152 } |
| OLD | NEW |