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

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

Issue 2511143004: mus: Split the gpu client-lib into a separate component. (Closed)
Patch Set: . 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
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "layout_manager.h", 70 "layout_manager.h",
71 "mus/capture_synchronizer.cc", 71 "mus/capture_synchronizer.cc",
72 "mus/capture_synchronizer.h", 72 "mus/capture_synchronizer.h",
73 "mus/capture_synchronizer_delegate.h", 73 "mus/capture_synchronizer_delegate.h",
74 "mus/drag_drop_controller_host.h", 74 "mus/drag_drop_controller_host.h",
75 "mus/drag_drop_controller_mus.cc", 75 "mus/drag_drop_controller_mus.cc",
76 "mus/drag_drop_controller_mus.h", 76 "mus/drag_drop_controller_mus.h",
77 "mus/focus_synchronizer.cc", 77 "mus/focus_synchronizer.cc",
78 "mus/focus_synchronizer.h", 78 "mus/focus_synchronizer.h",
79 "mus/focus_synchronizer_delegate.h", 79 "mus/focus_synchronizer_delegate.h",
80 "mus/gpu_memory_buffer_impl.cc",
81 "mus/gpu_memory_buffer_impl.h",
82 "mus/gpu_service.cc",
83 "mus/gpu_service.h",
84 "mus/in_flight_change.cc", 80 "mus/in_flight_change.cc",
85 "mus/in_flight_change.h", 81 "mus/in_flight_change.h",
86 "mus/input_method_mus.cc", 82 "mus/input_method_mus.cc",
87 "mus/input_method_mus.h", 83 "mus/input_method_mus.h",
88 "mus/mojo_gpu_memory_buffer.cc",
89 "mus/mojo_gpu_memory_buffer.h",
90 "mus/mojo_gpu_memory_buffer_manager.cc",
91 "mus/mojo_gpu_memory_buffer_manager.h",
92 "mus/mus_context_factory.cc", 84 "mus/mus_context_factory.cc",
93 "mus/mus_context_factory.h", 85 "mus/mus_context_factory.h",
94 "mus/mus_types.h", 86 "mus/mus_types.h",
95 "mus/mus_util.cc", 87 "mus/mus_util.cc",
96 "mus/mus_util.h", 88 "mus/mus_util.h",
97 "mus/os_exchange_data_provider_mus.cc", 89 "mus/os_exchange_data_provider_mus.cc",
98 "mus/os_exchange_data_provider_mus.h", 90 "mus/os_exchange_data_provider_mus.h",
99 "mus/property_converter.cc", 91 "mus/property_converter.cc",
100 "mus/property_converter.h", 92 "mus/property_converter.h",
101 "mus/surface_id_handler.h", 93 "mus/surface_id_handler.h",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 ] 137 ]
146 138
147 defines = [ "AURA_IMPLEMENTATION" ] 139 defines = [ "AURA_IMPLEMENTATION" ]
148 140
149 deps = [ 141 deps = [
150 "//base", 142 "//base",
151 "//base:i18n", 143 "//base:i18n",
152 "//base/third_party/dynamic_annotations", 144 "//base/third_party/dynamic_annotations",
153 "//cc", 145 "//cc",
154 "//cc/surfaces", 146 "//cc/surfaces",
155 "//gpu/command_buffer/client",
156 "//gpu/ipc/client", 147 "//gpu/ipc/client",
157 "//mojo/public/cpp/system", 148 "//mojo/public/cpp/system",
158 "//net", 149 "//net",
159 "//services/service_manager/public/cpp", 150 "//services/service_manager/public/cpp",
160 "//services/ui/public/cpp", 151 "//services/ui/public/cpp",
161 "//services/ui/public/interfaces", 152 "//services/ui/public/interfaces",
162 "//skia", 153 "//skia",
163 "//ui/base", 154 "//ui/base",
164 "//ui/base/ime", 155 "//ui/base/ime",
165 "//ui/compositor", 156 "//ui/compositor",
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 ] 353 ]
363 354
364 if (is_linux) { 355 if (is_linux) {
365 deps += [ "//third_party/mesa" ] 356 deps += [ "//third_party/mesa" ]
366 } 357 }
367 358
368 data_deps = [ 359 data_deps = [
369 "//third_party/mesa:osmesa", 360 "//third_party/mesa:osmesa",
370 ] 361 ]
371 } 362 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698