Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Side by Side Diff: ui/aura/BUILD.gn

Issue 2460663002: Moves OSExchangeDataProviderMus to aura/mus (Closed)
Patch Set: DEPS and daisy compile Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/aura/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 7
8 component("aura") { 8 component("aura") {
9 sources = [ 9 sources = [
10 "../wm/public/activation_change_observer.cc", 10 "../wm/public/activation_change_observer.cc",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "input_state_lookup_win.h", 68 "input_state_lookup_win.h",
69 "layout_manager.cc", 69 "layout_manager.cc",
70 "layout_manager.h", 70 "layout_manager.h",
71 "mus/in_flight_change.cc", 71 "mus/in_flight_change.cc",
72 "mus/in_flight_change.h", 72 "mus/in_flight_change.h",
73 "mus/input_method_mus.cc", 73 "mus/input_method_mus.cc",
74 "mus/input_method_mus.h", 74 "mus/input_method_mus.h",
75 "mus/mus_types.h", 75 "mus/mus_types.h",
76 "mus/mus_util.cc", 76 "mus/mus_util.cc",
77 "mus/mus_util.h", 77 "mus/mus_util.h",
78 "mus/os_exchange_data_provider_mus.cc",
79 "mus/os_exchange_data_provider_mus.h",
78 "mus/property_converter.h", 80 "mus/property_converter.h",
79 "mus/surface_id_handler.h", 81 "mus/surface_id_handler.h",
80 "mus/text_input_client_impl.cc", 82 "mus/text_input_client_impl.cc",
81 "mus/text_input_client_impl.h", 83 "mus/text_input_client_impl.h",
82 "mus/window_manager_delegate.cc", 84 "mus/window_manager_delegate.cc",
83 "mus/window_manager_delegate.h", 85 "mus/window_manager_delegate.h",
84 "mus/window_mus.h", 86 "mus/window_mus.h",
85 "mus/window_port_mus.cc", 87 "mus/window_port_mus.cc",
86 "mus/window_port_mus.h", 88 "mus/window_port_mus.h",
87 "mus/window_tree_client.cc", 89 "mus/window_tree_client.cc",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "window_tree_host_x11.h", 121 "window_tree_host_x11.h",
120 ] 122 ]
121 123
122 defines = [ "AURA_IMPLEMENTATION" ] 124 defines = [ "AURA_IMPLEMENTATION" ]
123 125
124 deps = [ 126 deps = [
125 "//base", 127 "//base",
126 "//base:i18n", 128 "//base:i18n",
127 "//base/third_party/dynamic_annotations", 129 "//base/third_party/dynamic_annotations",
128 "//cc/surfaces:surface_id", 130 "//cc/surfaces:surface_id",
131 "//net",
129 "//services/service_manager/public/cpp", 132 "//services/service_manager/public/cpp",
130 "//services/ui/public/interfaces", 133 "//services/ui/public/interfaces",
131 "//skia", 134 "//skia",
132 "//ui/base", 135 "//ui/base",
133 "//ui/base/ime", 136 "//ui/base/ime",
134 "//ui/compositor", 137 "//ui/compositor",
135 "//ui/display", 138 "//ui/display",
136 "//ui/events", 139 "//ui/events",
137 "//ui/events:events_base", 140 "//ui/events:events_base",
138 "//ui/events/platform", 141 "//ui/events/platform",
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 ] 297 ]
295 298
296 if (use_x11) { 299 if (use_x11) {
297 deps += [ "//ui/gfx/x" ] 300 deps += [ "//ui/gfx/x" ]
298 } 301 }
299 } 302 }
300 303
301 test("aura_unittests") { 304 test("aura_unittests") {
302 sources = [ 305 sources = [
303 "gestures/gesture_recognizer_unittest.cc", 306 "gestures/gesture_recognizer_unittest.cc",
307 "mus/os_exchange_data_provider_mus_unittest.cc",
304 "mus/window_tree_client_unittest.cc", 308 "mus/window_tree_client_unittest.cc",
305 "test/run_all_unittests.cc", 309 "test/run_all_unittests.cc",
306 "window_event_dispatcher_unittest.cc", 310 "window_event_dispatcher_unittest.cc",
307 "window_targeter_unittest.cc", 311 "window_targeter_unittest.cc",
308 "window_tree_host_unittest.cc", 312 "window_tree_host_unittest.cc",
309 "window_unittest.cc", 313 "window_unittest.cc",
310 ] 314 ]
311 315
312 deps = [ 316 deps = [
313 ":test_support", 317 ":test_support",
314 "//base/test:test_support", 318 "//base/test:test_support",
315 "//mojo/common", 319 "//mojo/common",
320 "//net",
316 "//skia", 321 "//skia",
317 "//testing/gtest", 322 "//testing/gtest",
318 "//ui/base:test_support", 323 "//ui/base:test_support",
319 "//ui/compositor:test_support", 324 "//ui/compositor:test_support",
320 "//ui/display:test_support", 325 "//ui/display:test_support",
321 "//ui/events:gesture_detection", 326 "//ui/events:gesture_detection",
322 "//ui/events:test_support", 327 "//ui/events:test_support",
323 "//ui/gfx", 328 "//ui/gfx",
324 "//ui/gfx/geometry", 329 "//ui/gfx/geometry",
325 "//ui/gl:test_support", 330 "//ui/gl:test_support",
326 ] 331 ]
327 332
328 if (is_linux) { 333 if (is_linux) {
329 deps += [ "//third_party/mesa" ] 334 deps += [ "//third_party/mesa" ]
330 } 335 }
331 336
332 data_deps = [ 337 data_deps = [
333 "//third_party/mesa:osmesa", 338 "//third_party/mesa:osmesa",
334 ] 339 ]
335 } 340 }
OLDNEW
« no previous file with comments | « no previous file | ui/aura/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698