| 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) |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "wm_layout_manager.h", | 74 "wm_layout_manager.h", |
| 75 "wm_lookup.cc", | 75 "wm_lookup.cc", |
| 76 "wm_lookup.h", | 76 "wm_lookup.h", |
| 77 "wm_overview_mode_observer.h", | 77 "wm_overview_mode_observer.h", |
| 78 "wm_root_window_controller.h", | 78 "wm_root_window_controller.h", |
| 79 "wm_root_window_controller_observer.h", | 79 "wm_root_window_controller_observer.h", |
| 80 "wm_screen_util.cc", | 80 "wm_screen_util.cc", |
| 81 "wm_screen_util.h", | 81 "wm_screen_util.h", |
| 82 "wm_snap_to_pixel_layout_manager.cc", | 82 "wm_snap_to_pixel_layout_manager.cc", |
| 83 "wm_snap_to_pixel_layout_manager.h", | 83 "wm_snap_to_pixel_layout_manager.h", |
| 84 "wm_toplevel_window_event_handler.cc", |
| 85 "wm_toplevel_window_event_handler.h", |
| 84 "wm_types.cc", | 86 "wm_types.cc", |
| 85 "wm_types.h", | 87 "wm_types.h", |
| 86 "wm_user_metrics_action.h", | 88 "wm_user_metrics_action.h", |
| 87 "wm_window.h", | 89 "wm_window.h", |
| 88 "wm_window_observer.h", | 90 "wm_window_observer.h", |
| 89 "wm_window_property.h", | 91 "wm_window_property.h", |
| 90 "wm_window_tracker.h", | 92 "wm_window_tracker.h", |
| 91 "workspace/magnetism_matcher.cc", | 93 "workspace/magnetism_matcher.cc", |
| 92 "workspace/magnetism_matcher.h", | 94 "workspace/magnetism_matcher.h", |
| 93 "workspace/multi_window_resize_controller.cc", | 95 "workspace/multi_window_resize_controller.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 115 "//skia", | 117 "//skia", |
| 116 | 118 |
| 117 # TODO(sky): remove aura dependencies. Currently the usage is for | 119 # TODO(sky): remove aura dependencies. Currently the usage is for |
| 118 # aura/client code, and not aura::Window, but it would be nice to remove | 120 # aura/client code, and not aura::Window, but it would be nice to remove |
| 119 # this entirely. | 121 # this entirely. |
| 120 "//ui/aura", | 122 "//ui/aura", |
| 121 "//ui/base", | 123 "//ui/base", |
| 122 "//ui/compositor", | 124 "//ui/compositor", |
| 123 "//ui/display", | 125 "//ui/display", |
| 124 "//ui/events", | 126 "//ui/events", |
| 127 "//ui/events:events_base", |
| 125 "//ui/gfx", | 128 "//ui/gfx", |
| 126 "//ui/gfx/geometry", | 129 "//ui/gfx/geometry", |
| 127 "//ui/keyboard", | 130 "//ui/keyboard", |
| 128 "//ui/views", | 131 "//ui/views", |
| 129 "//ui/wm", | 132 "//ui/wm", |
| 130 ] | 133 ] |
| 131 | 134 |
| 132 if (is_win) { | 135 if (is_win) { |
| 133 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 136 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 134 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 137 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 135 } | 138 } |
| 136 } | 139 } |
| OLD | NEW |