| 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 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 "//ui/gfx:test_support", | 181 "//ui/gfx:test_support", |
| 182 "//ui/gfx/geometry", | 182 "//ui/gfx/geometry", |
| 183 ] | 183 ] |
| 184 | 184 |
| 185 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 185 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
| 186 deps += [ "//third_party/mesa:osmesa" ] | 186 deps += [ "//third_party/mesa:osmesa" ] |
| 187 } | 187 } |
| 188 } | 188 } |
| 189 | 189 |
| 190 mojo_native_application("apptests") { | 190 mojo_native_application("apptests") { |
| 191 output_name = "view_manager_apptests" | 191 output_name = "mus_apptests" |
| 192 testonly = true | 192 testonly = true |
| 193 | 193 |
| 194 sources = [ | 194 sources = [ |
| 195 "view_manager_client_apptest.cc", | 195 "view_manager_client_apptest.cc", |
| 196 "view_tree_apptest.cc", | 196 "view_tree_apptest.cc", |
| 197 ] | 197 ] |
| 198 | 198 |
| 199 deps = [ | 199 deps = [ |
| 200 ":test_support", | 200 ":test_support", |
| 201 "//base", | 201 "//base", |
| 202 "//base/test:test_config", | 202 "//base/test:test_config", |
| 203 "//components/mus/public/cpp", | 203 "//components/mus/public/cpp", |
| 204 "//components/mus/public/cpp/tests:test_support", | 204 "//components/mus/public/cpp/tests:test_support", |
| 205 "//components/mus/public/interfaces", | 205 "//components/mus/public/interfaces", |
| 206 "//mojo/application/public/cpp:sources", | 206 "//mojo/application/public/cpp:sources", |
| 207 "//mojo/application/public/cpp:test_support", | 207 "//mojo/application/public/cpp:test_support", |
| 208 "//ui/mojo/geometry:interfaces", | 208 "//ui/mojo/geometry:interfaces", |
| 209 "//ui/mojo/geometry:util", | 209 "//ui/mojo/geometry:util", |
| 210 ] | 210 ] |
| 211 | 211 |
| 212 data_deps = [ ":mus" ] | 212 data_deps = [ ":mus" ] |
| 213 } | 213 } |
| OLD | NEW |