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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 100 |
101 if (is_chromeos) { | 101 if (is_chromeos) { |
102 # TODO(jamescook): Move these tests into //ash/mus. | 102 # TODO(jamescook): Move these tests into //ash/mus. |
103 test("mash_unittests") { | 103 test("mash_unittests") { |
104 sources = [ | 104 sources = [ |
105 "test/mash_test_suite.cc", | 105 "test/mash_test_suite.cc", |
106 "test/mash_test_suite.h", | 106 "test/mash_test_suite.h", |
107 "test/mash_unittests.cc", | 107 "test/mash_unittests.cc", |
108 ] | 108 ] |
109 deps = [ | 109 deps = [ |
110 "//ash:common_unittests", | |
111 "//ash/mus:resources", | 110 "//ash/mus:resources", |
112 "//ash/mus:unittests", | 111 "//ash/mus:unittests", |
113 "//ash/public/cpp:ash_public_cpp", | 112 "//ash/public/cpp:ash_public_cpp", |
| 113 "//ash/test:test_support_without_content", |
114 "//base", | 114 "//base", |
115 "//base/test:test_support", | 115 "//base/test:test_support", |
116 "//cc", | 116 "//cc", |
117 "//cc:test_support", | 117 "//cc:test_support", |
118 "//cc/surfaces", | 118 "//cc/surfaces", |
119 "//mojo/edk/system", | 119 "//mojo/edk/system", |
120 "//services/catalog:lib", | 120 "//services/catalog:lib", |
121 "//ui/aura", | 121 "//ui/aura", |
122 "//ui/base", | 122 "//ui/base", |
123 "//ui/compositor:test_support", | 123 "//ui/compositor:test_support", |
(...skipping 22 matching lines...) Expand all Loading... |
146 testonly = true | 146 testonly = true |
147 sources = get_target_outputs(":mash_unittests_catalog") | 147 sources = get_target_outputs(":mash_unittests_catalog") |
148 outputs = [ | 148 outputs = [ |
149 "${root_out_dir}/mash_unittests_catalog.json", | 149 "${root_out_dir}/mash_unittests_catalog.json", |
150 ] | 150 ] |
151 deps = [ | 151 deps = [ |
152 ":mash_unittests_catalog", | 152 ":mash_unittests_catalog", |
153 ] | 153 ] |
154 } | 154 } |
155 } | 155 } |
OLD | NEW |