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 | 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 "input_state_lookup_win.cc", | 67 "input_state_lookup_win.cc", |
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/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", |
| 78 "mus/focus_synchronizer.h", |
| 79 "mus/focus_synchronizer_delegate.h", |
77 "mus/gpu_memory_buffer_impl.cc", | 80 "mus/gpu_memory_buffer_impl.cc", |
78 "mus/gpu_memory_buffer_impl.h", | 81 "mus/gpu_memory_buffer_impl.h", |
79 "mus/gpu_service.cc", | 82 "mus/gpu_service.cc", |
80 "mus/gpu_service.h", | 83 "mus/gpu_service.h", |
81 "mus/in_flight_change.cc", | 84 "mus/in_flight_change.cc", |
82 "mus/in_flight_change.h", | 85 "mus/in_flight_change.h", |
83 "mus/input_method_mus.cc", | 86 "mus/input_method_mus.cc", |
84 "mus/input_method_mus.h", | 87 "mus/input_method_mus.h", |
85 "mus/mojo_gpu_memory_buffer.cc", | 88 "mus/mojo_gpu_memory_buffer.cc", |
86 "mus/mojo_gpu_memory_buffer.h", | 89 "mus/mojo_gpu_memory_buffer.h", |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 ] | 355 ] |
353 | 356 |
354 if (is_linux) { | 357 if (is_linux) { |
355 deps += [ "//third_party/mesa" ] | 358 deps += [ "//third_party/mesa" ] |
356 } | 359 } |
357 | 360 |
358 data_deps = [ | 361 data_deps = [ |
359 "//third_party/mesa:osmesa", | 362 "//third_party/mesa:osmesa", |
360 ] | 363 ] |
361 } | 364 } |
OLD | NEW |