| 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 | 6 |
| 7 component("aura") { | 7 component("aura") { |
| 8 sources = [ | 8 sources = [ |
| 9 "client/aura_constants.cc", | 9 "client/aura_constants.cc", |
| 10 "client/aura_constants.h", | 10 "client/aura_constants.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "client/window_tree_client.h", | 33 "client/window_tree_client.h", |
| 34 "env.cc", | 34 "env.cc", |
| 35 "env.h", | 35 "env.h", |
| 36 "env_observer.h", | 36 "env_observer.h", |
| 37 "input_state_lookup.cc", | 37 "input_state_lookup.cc", |
| 38 "input_state_lookup.h", | 38 "input_state_lookup.h", |
| 39 "input_state_lookup_win.cc", | 39 "input_state_lookup_win.cc", |
| 40 "input_state_lookup_win.h", | 40 "input_state_lookup_win.h", |
| 41 "layout_manager.cc", | 41 "layout_manager.cc", |
| 42 "layout_manager.h", | 42 "layout_manager.h", |
| 43 "remote_window_tree_host_win.cc", | |
| 44 "remote_window_tree_host_win.h", | |
| 45 "scoped_window_targeter.cc", | 43 "scoped_window_targeter.cc", |
| 46 "scoped_window_targeter.h", | 44 "scoped_window_targeter.h", |
| 47 "window.cc", | 45 "window.cc", |
| 48 "window.h", | 46 "window.h", |
| 49 "window_event_dispatcher.cc", | 47 "window_event_dispatcher.cc", |
| 50 "window_event_dispatcher.h", | 48 "window_event_dispatcher.h", |
| 51 "window_delegate.h", | 49 "window_delegate.h", |
| 52 "window_layer_type.h", | 50 "window_layer_type.h", |
| 53 "window_observer.cc", | 51 "window_observer.cc", |
| 54 "window_observer.h", | 52 "window_observer.h", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "//build/config/linux:xrandr", | 111 "//build/config/linux:xrandr", |
| 114 ] | 112 ] |
| 115 deps += [ | 113 deps += [ |
| 116 "//ui/events/platform/x11", | 114 "//ui/events/platform/x11", |
| 117 ] | 115 ] |
| 118 } | 116 } |
| 119 | 117 |
| 120 if (is_win) { | 118 if (is_win) { |
| 121 sources -= [ | 119 sources -= [ |
| 122 "input_state_lookup.cc", | 120 "input_state_lookup.cc", |
| 121 "window_tree_host_x11.cc", |
| 123 ] | 122 ] |
| 124 } | 123 } |
| 125 | 124 |
| 126 if (use_ozone) { | 125 if (use_ozone) { |
| 127 sources += [ | 126 sources += [ |
| 128 "window_tree_host_ozone.cc", | 127 "window_tree_host_ozone.cc", |
| 129 "window_tree_host_ozone.h", | 128 "window_tree_host_ozone.h", |
| 130 ] | 129 ] |
| 131 | 130 |
| 132 # TODO(GYP) enable when these targets exist. | 131 # TODO(GYP) enable when these targets exist. |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 ] | 294 ] |
| 296 | 295 |
| 297 if (is_linux) { | 296 if (is_linux) { |
| 298 deps += [ | 297 deps += [ |
| 299 "//third_party/mesa", | 298 "//third_party/mesa", |
| 300 ] | 299 ] |
| 301 } | 300 } |
| 302 } | 301 } |
| 303 | 302 |
| 304 } # if (false) | 303 } # if (false) |
| OLD | NEW |