Chromium Code Reviews| 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//services/catalog/public/tools/catalog.gni") | 6 import("//services/catalog/public/tools/catalog.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 # Target that builders build. | 10 # Target that builders build. |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 114 "test/mash_unittests.cc", | 114 "test/mash_unittests.cc", |
| 115 ] | 115 ] |
| 116 deps = [ | 116 deps = [ |
| 117 "//ash:common_unittests", | 117 "//ash:common_unittests", |
| 118 "//ash/mus:resources", | 118 "//ash/mus:resources", |
| 119 "//ash/mus:unittests", | 119 "//ash/mus:unittests", |
| 120 "//base", | 120 "//base", |
| 121 "//base/test:test_support", | 121 "//base/test:test_support", |
| 122 "//cc", | 122 "//cc", |
| 123 "//cc:test_support", | 123 "//cc:test_support", |
| 124 "//cc/surfaces:surfaces", | |
|
sky
2017/03/02 03:07:56
You don't need the :surfaces here.
reveman
2017/03/02 12:44:13
Done.
| |
| 124 "//mojo/edk/system", | 125 "//mojo/edk/system", |
| 125 "//services/catalog:lib", | 126 "//services/catalog:lib", |
| 126 "//ui/aura", | 127 "//ui/aura", |
| 127 "//ui/base", | 128 "//ui/base", |
| 128 "//ui/compositor:test_support", | 129 "//ui/compositor:test_support", |
| 129 "//ui/gl:test_support", | 130 "//ui/gl:test_support", |
| 130 ] | 131 ] |
| 131 data_deps = [ | 132 data_deps = [ |
| 132 ":mash_unittests_catalog_copy", | 133 ":mash_unittests_catalog_copy", |
| 133 "//ash/mus:resources", | 134 "//ash/mus:resources", |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 151 testonly = true | 152 testonly = true |
| 152 sources = get_target_outputs(":mash_unittests_catalog") | 153 sources = get_target_outputs(":mash_unittests_catalog") |
| 153 outputs = [ | 154 outputs = [ |
| 154 "${root_out_dir}/mash_unittests_catalog.json", | 155 "${root_out_dir}/mash_unittests_catalog.json", |
| 155 ] | 156 ] |
| 156 deps = [ | 157 deps = [ |
| 157 ":mash_unittests_catalog", | 158 ":mash_unittests_catalog", |
| 158 ] | 159 ] |
| 159 } | 160 } |
| 160 } | 161 } |
| OLD | NEW |