Chromium Code Reviews| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 55 "client/visibility_client.h", | 55 "client/visibility_client.h", |
| 56 "client/window_parenting_client.cc", | 56 "client/window_parenting_client.cc", |
| 57 "client/window_parenting_client.h", | 57 "client/window_parenting_client.h", |
| 58 "client/window_stacking_client.cc", | 58 "client/window_stacking_client.cc", |
| 59 "client/window_stacking_client.h", | 59 "client/window_stacking_client.h", |
| 60 "env.cc", | 60 "env.cc", |
| 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 "event_injector.cc", | |
|
sky
2017/05/12 12:11:51
Should EventInjector be test only? At least for mu
sadrul
2017/05/12 21:26:08
It unfortunately can't be, right now, because tele
| |
| 66 "event_injector.h", | |
| 65 "input_state_lookup.cc", | 67 "input_state_lookup.cc", |
| 66 "input_state_lookup.h", | 68 "input_state_lookup.h", |
| 67 "input_state_lookup_win.cc", | 69 "input_state_lookup_win.cc", |
| 68 "input_state_lookup_win.h", | 70 "input_state_lookup_win.h", |
| 69 "layout_manager.cc", | 71 "layout_manager.cc", |
| 70 "layout_manager.h", | 72 "layout_manager.h", |
| 71 "local/compositor_frame_sink_local.cc", | 73 "local/compositor_frame_sink_local.cc", |
| 72 "local/compositor_frame_sink_local.h", | 74 "local/compositor_frame_sink_local.h", |
| 73 "local/window_port_local.cc", | 75 "local/window_port_local.cc", |
| 74 "local/window_port_local.h", | 76 "local/window_port_local.h", |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 383 ] | 385 ] |
| 384 | 386 |
| 385 if (is_linux) { | 387 if (is_linux) { |
| 386 deps += [ "//third_party/mesa" ] | 388 deps += [ "//third_party/mesa" ] |
| 387 } | 389 } |
| 388 | 390 |
| 389 data_deps = [ | 391 data_deps = [ |
| 390 "//third_party/mesa:osmesa", | 392 "//third_party/mesa:osmesa", |
| 391 ] | 393 ] |
| 392 } | 394 } |
| OLD | NEW |