| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "env.h", | 61 "env.h", |
| 62 "env_input_state_controller.cc", | 62 "env_input_state_controller.cc", |
| 63 "env_input_state_controller.h", | 63 "env_input_state_controller.h", |
| 64 "env_observer.h", | 64 "env_observer.h", |
| 65 "input_state_lookup.cc", | 65 "input_state_lookup.cc", |
| 66 "input_state_lookup.h", | 66 "input_state_lookup.h", |
| 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", |
| 72 "mus/capture_synchronizer.h", |
| 73 "mus/capture_synchronizer_delegate.h", |
| 71 "mus/drag_drop_controller_host.h", | 74 "mus/drag_drop_controller_host.h", |
| 72 "mus/drag_drop_controller_mus.cc", | 75 "mus/drag_drop_controller_mus.cc", |
| 73 "mus/drag_drop_controller_mus.h", | 76 "mus/drag_drop_controller_mus.h", |
| 74 "mus/in_flight_change.cc", | 77 "mus/in_flight_change.cc", |
| 75 "mus/in_flight_change.h", | 78 "mus/in_flight_change.h", |
| 76 "mus/input_method_mus.cc", | 79 "mus/input_method_mus.cc", |
| 77 "mus/input_method_mus.h", | 80 "mus/input_method_mus.h", |
| 78 "mus/mus_types.h", | 81 "mus/mus_types.h", |
| 79 "mus/mus_util.cc", | 82 "mus/mus_util.cc", |
| 80 "mus/mus_util.h", | 83 "mus/mus_util.h", |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 ] | 338 ] |
| 336 | 339 |
| 337 if (is_linux) { | 340 if (is_linux) { |
| 338 deps += [ "//third_party/mesa" ] | 341 deps += [ "//third_party/mesa" ] |
| 339 } | 342 } |
| 340 | 343 |
| 341 data_deps = [ | 344 data_deps = [ |
| 342 "//third_party/mesa:osmesa", | 345 "//third_party/mesa:osmesa", |
| 343 ] | 346 ] |
| 344 } | 347 } |
| OLD | NEW |