| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 | 9 |
| 10 assert(use_aura) | 10 assert(use_aura) |
| 11 assert(enable_hidpi) | 11 assert(enable_hidpi) |
| 12 | 12 |
| 13 # This target contains window management code used by both mash and ash. It | 13 # This target contains window management code used by both mash and ash. It |
| 14 # should not use aura::Window, but may use parts of aura client code that don't | 14 # should not use aura::Window, but may use parts of aura client code that don't |
| 15 # depend upon aura::Window directly or indirectly. | 15 # depend upon aura::Window directly or indirectly. |
| 16 component("ash_wm_common") { | 16 component("ash_wm_common") { |
| 17 sources = [ | 17 sources = [ |
| 18 "always_on_top_controller.cc", | 18 "always_on_top_controller.cc", |
| 19 "always_on_top_controller.h", | 19 "always_on_top_controller.h", |
| 20 "background_animator.cc", | 20 "background_animator.cc", |
| 21 "background_animator.h", | 21 "background_animator.h", |
| 22 "container_finder.cc", |
| 23 "container_finder.h", |
| 22 "default_state.cc", | 24 "default_state.cc", |
| 23 "default_state.h", | 25 "default_state.h", |
| 24 "default_window_resizer.cc", | 26 "default_window_resizer.cc", |
| 25 "default_window_resizer.h", | 27 "default_window_resizer.h", |
| 26 "dock/docked_window_layout_manager.cc", | 28 "dock/docked_window_layout_manager.cc", |
| 27 "dock/docked_window_layout_manager.h", | 29 "dock/docked_window_layout_manager.h", |
| 28 "dock/docked_window_layout_manager_observer.h", | 30 "dock/docked_window_layout_manager_observer.h", |
| 29 "dock/docked_window_resizer.cc", | 31 "dock/docked_window_resizer.cc", |
| 30 "dock/docked_window_resizer.h", | 32 "dock/docked_window_resizer.h", |
| 31 "drag_details.cc", | 33 "drag_details.cc", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "//ui/keyboard", | 131 "//ui/keyboard", |
| 130 "//ui/views", | 132 "//ui/views", |
| 131 "//ui/wm", | 133 "//ui/wm", |
| 132 ] | 134 ] |
| 133 | 135 |
| 134 if (is_win) { | 136 if (is_win) { |
| 135 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 137 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 136 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 138 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 137 } | 139 } |
| 138 } | 140 } |
| OLD | NEW |