| 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("wm") { | 8 component("wm") { |
| 9 sources = [ | 9 sources = [ |
| 10 "core/accelerator_delegate.h", | 10 "core/accelerator_delegate.h", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 "core/shadow_types.h", | 52 "core/shadow_types.h", |
| 53 "core/transient_window_controller.cc", | 53 "core/transient_window_controller.cc", |
| 54 "core/transient_window_controller.h", | 54 "core/transient_window_controller.h", |
| 55 "core/transient_window_manager.cc", | 55 "core/transient_window_manager.cc", |
| 56 "core/transient_window_manager.h", | 56 "core/transient_window_manager.h", |
| 57 "core/transient_window_observer.h", | 57 "core/transient_window_observer.h", |
| 58 "core/transient_window_stacking_client.cc", | 58 "core/transient_window_stacking_client.cc", |
| 59 "core/transient_window_stacking_client.h", | 59 "core/transient_window_stacking_client.h", |
| 60 "core/visibility_controller.cc", | 60 "core/visibility_controller.cc", |
| 61 "core/visibility_controller.h", | 61 "core/visibility_controller.h", |
| 62 "core/window_activation_pre_target_handler.cc", |
| 63 "core/window_activation_pre_target_handler.h", |
| 64 "core/window_activation_pre_target_handler_observer.cc", |
| 65 "core/window_activation_pre_target_handler_observer.h", |
| 62 "core/window_animations.cc", | 66 "core/window_animations.cc", |
| 63 "core/window_animations.h", | 67 "core/window_animations.h", |
| 64 "core/window_modality_controller.cc", | 68 "core/window_modality_controller.cc", |
| 65 "core/window_modality_controller.h", | 69 "core/window_modality_controller.h", |
| 66 "core/window_util.cc", | 70 "core/window_util.cc", |
| 67 "core/window_util.h", | 71 "core/window_util.h", |
| 68 "core/wm_core_switches.cc", | 72 "core/wm_core_switches.cc", |
| 69 "core/wm_core_switches.h", | 73 "core/wm_core_switches.h", |
| 70 "core/wm_state.cc", | 74 "core/wm_state.cc", |
| 71 "core/wm_state.h", | 75 "core/wm_state.h", |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "//ui/base:test_support", | 147 "//ui/base:test_support", |
| 144 "//ui/base/ime", | 148 "//ui/base/ime", |
| 145 "//ui/compositor:test_support", | 149 "//ui/compositor:test_support", |
| 146 "//ui/events:test_support", | 150 "//ui/events:test_support", |
| 147 "//ui/events/platform", | 151 "//ui/events/platform", |
| 148 "//ui/gfx", | 152 "//ui/gfx", |
| 149 "//ui/gfx/geometry", | 153 "//ui/gfx/geometry", |
| 150 "//ui/gl", | 154 "//ui/gl", |
| 151 ] | 155 ] |
| 152 } | 156 } |
| OLD | NEW |