| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "focus_controller_unittest.cc", | 117 "focus_controller_unittest.cc", |
| 118 "server_window_drawn_tracker_unittest.cc", | 118 "server_window_drawn_tracker_unittest.cc", |
| 119 "test_server_window_delegate.cc", | 119 "test_server_window_delegate.cc", |
| 120 "test_server_window_delegate.h", | 120 "test_server_window_delegate.h", |
| 121 "transient_windows_unittest.cc", | 121 "transient_windows_unittest.cc", |
| 122 "window_coordinate_conversions_unittest.cc", | 122 "window_coordinate_conversions_unittest.cc", |
| 123 "window_tree_unittest.cc", | 123 "window_tree_unittest.cc", |
| 124 ] | 124 ] |
| 125 | 125 |
| 126 deps = [ | 126 deps = [ |
| 127 ":lib", |
| 127 ":test_support", | 128 ":test_support", |
| 128 ":lib", | |
| 129 "//base", | 129 "//base", |
| 130 "//base/test:test_config", | 130 "//base/test:test_config", |
| 131 "//components/mus/common", | 131 "//components/mus/common", |
| 132 "//components/mus/surfaces", | |
| 133 "//components/mus/public/cpp", | 132 "//components/mus/public/cpp", |
| 134 "//components/mus/public/interfaces", | 133 "//components/mus/public/interfaces", |
| 134 "//components/mus/surfaces", |
| 135 "//mojo/application/public/interfaces", | 135 "//mojo/application/public/interfaces", |
| 136 "//mojo/converters/geometry", | 136 "//mojo/converters/geometry", |
| 137 "//mojo/converters/input_events", | 137 "//mojo/converters/input_events", |
| 138 "//mojo/converters/transform", | 138 "//mojo/converters/transform", |
| 139 "//mojo/environment:chromium", | 139 "//mojo/environment:chromium", |
| 140 "//mojo/gles2", | 140 "//mojo/gles2", |
| 141 "//mojo/platform_handle", | 141 "//mojo/platform_handle", |
| 142 "//mojo/public/cpp/bindings:bindings", | 142 "//mojo/public/cpp/bindings:bindings", |
| 143 "//testing/gtest", |
| 143 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 144 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
| 144 "//ui/mojo/geometry:interfaces", | |
| 145 "//testing/gtest", | |
| 146 "//ui/events", | 145 "//ui/events", |
| 147 "//ui/gfx", | 146 "//ui/gfx", |
| 148 "//ui/gfx:test_support", | 147 "//ui/gfx:test_support", |
| 149 "//ui/gfx/geometry", | 148 "//ui/gfx/geometry", |
| 149 "//ui/mojo/geometry:interfaces", |
| 150 ] | 150 ] |
| 151 | 151 |
| 152 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 152 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
| 153 deps += [ "//third_party/mesa:osmesa" ] | 153 deps += [ "//third_party/mesa:osmesa" ] |
| 154 } | 154 } |
| 155 } | 155 } |
| 156 | 156 |
| 157 mojo_native_application("apptests") { | 157 mojo_native_application("apptests") { |
| 158 output_name = "mus_apptests" | 158 output_name = "mus_apptests" |
| 159 testonly = true | 159 testonly = true |
| (...skipping 17 matching lines...) Expand all Loading... |
| 177 "//ui/gfx:test_support", | 177 "//ui/gfx:test_support", |
| 178 "//ui/gfx/geometry", | 178 "//ui/gfx/geometry", |
| 179 "//ui/mojo/geometry:interfaces", | 179 "//ui/mojo/geometry:interfaces", |
| 180 "//ui/mojo/geometry:util", | 180 "//ui/mojo/geometry:util", |
| 181 ] | 181 ] |
| 182 | 182 |
| 183 data_deps = [ | 183 data_deps = [ |
| 184 ":lib", | 184 ":lib", |
| 185 ] | 185 ] |
| 186 } | 186 } |
| OLD | NEW |