OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 | 8 |
9 source_set("lib") { | 9 source_set("lib") { |
10 sources = [ | 10 sources = [ |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 ":test_support", | 141 ":test_support", |
142 "//base", | 142 "//base", |
143 "//base/test:test_config", | 143 "//base/test:test_config", |
144 "//components/mus/common", | 144 "//components/mus/common", |
145 "//components/mus/public/cpp", | 145 "//components/mus/public/cpp", |
146 "//components/mus/public/interfaces", | 146 "//components/mus/public/interfaces", |
147 "//components/mus/surfaces", | 147 "//components/mus/surfaces", |
148 "//mojo/converters/geometry", | 148 "//mojo/converters/geometry", |
149 "//mojo/converters/input_events", | 149 "//mojo/converters/input_events", |
150 "//mojo/converters/transform", | 150 "//mojo/converters/transform", |
| 151 "//mojo/edk/test:run_all_unittests", |
151 "//mojo/environment:chromium", | 152 "//mojo/environment:chromium", |
152 "//mojo/gles2", | 153 "//mojo/gles2", |
153 "//mojo/platform_handle", | 154 "//mojo/platform_handle", |
154 "//mojo/public/cpp/bindings:bindings", | 155 "//mojo/public/cpp/bindings:bindings", |
155 "//mojo/shell/public/interfaces", | 156 "//mojo/shell/public/interfaces", |
156 "//testing/gtest", | 157 "//testing/gtest", |
157 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | |
158 "//ui/events", | 158 "//ui/events", |
159 "//ui/gfx", | 159 "//ui/gfx", |
160 "//ui/gfx:test_support", | 160 "//ui/gfx:test_support", |
161 "//ui/gfx/geometry", | 161 "//ui/gfx/geometry", |
162 "//ui/mojo/geometry:interfaces", | 162 "//ui/mojo/geometry:interfaces", |
163 ] | 163 ] |
164 | 164 |
165 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 165 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
166 deps += [ "//third_party/mesa:osmesa" ] | 166 deps += [ "//third_party/mesa:osmesa" ] |
167 } | 167 } |
(...skipping 22 matching lines...) Expand all Loading... |
190 "//ui/gfx:test_support", | 190 "//ui/gfx:test_support", |
191 "//ui/gfx/geometry", | 191 "//ui/gfx/geometry", |
192 "//ui/mojo/geometry:interfaces", | 192 "//ui/mojo/geometry:interfaces", |
193 "//ui/mojo/geometry:util", | 193 "//ui/mojo/geometry:util", |
194 ] | 194 ] |
195 | 195 |
196 data_deps = [ | 196 data_deps = [ |
197 ":lib", | 197 ":lib", |
198 ] | 198 ] |
199 } | 199 } |
OLD | NEW |