| 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/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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 "common/wm/default_window_resizer.h", | 449 "common/wm/default_window_resizer.h", |
| 450 "common/wm/dock/docked_window_layout_manager.cc", | 450 "common/wm/dock/docked_window_layout_manager.cc", |
| 451 "common/wm/dock/docked_window_layout_manager.h", | 451 "common/wm/dock/docked_window_layout_manager.h", |
| 452 "common/wm/dock/docked_window_layout_manager_observer.h", | 452 "common/wm/dock/docked_window_layout_manager_observer.h", |
| 453 "common/wm/dock/docked_window_resizer.cc", | 453 "common/wm/dock/docked_window_resizer.cc", |
| 454 "common/wm/dock/docked_window_resizer.h", | 454 "common/wm/dock/docked_window_resizer.h", |
| 455 "common/wm/drag_details.cc", | 455 "common/wm/drag_details.cc", |
| 456 "common/wm/drag_details.h", | 456 "common/wm/drag_details.h", |
| 457 "common/wm/focus_rules.cc", | 457 "common/wm/focus_rules.cc", |
| 458 "common/wm/focus_rules.h", | 458 "common/wm/focus_rules.h", |
| 459 "common/wm/forwarding_layer_delegate.cc", | |
| 460 "common/wm/forwarding_layer_delegate.h", | |
| 461 "common/wm/fullscreen_window_finder.cc", | 459 "common/wm/fullscreen_window_finder.cc", |
| 462 "common/wm/fullscreen_window_finder.h", | 460 "common/wm/fullscreen_window_finder.h", |
| 463 "common/wm/immersive_context_ash.cc", | 461 "common/wm/immersive_context_ash.cc", |
| 464 "common/wm/immersive_context_ash.h", | 462 "common/wm/immersive_context_ash.h", |
| 465 "common/wm/lock_layout_manager.cc", | 463 "common/wm/lock_layout_manager.cc", |
| 466 "common/wm/lock_layout_manager.h", | 464 "common/wm/lock_layout_manager.h", |
| 467 "common/wm/lock_state_observer.h", | 465 "common/wm/lock_state_observer.h", |
| 468 "common/wm/lock_window_state.cc", | 466 "common/wm/lock_window_state.cc", |
| 469 "common/wm/lock_window_state.h", | 467 "common/wm/lock_window_state.h", |
| 470 "common/wm/maximize_mode/maximize_mode_controller.cc", | 468 "common/wm/maximize_mode/maximize_mode_controller.cc", |
| (...skipping 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1688 if (is_win) { | 1686 if (is_win) { |
| 1689 configs -= [ "//build/config/win:console" ] | 1687 configs -= [ "//build/config/win:console" ] |
| 1690 configs += [ "//build/config/win:windowed" ] | 1688 configs += [ "//build/config/win:windowed" ] |
| 1691 deps += [ "//sandbox" ] | 1689 deps += [ "//sandbox" ] |
| 1692 } | 1690 } |
| 1693 | 1691 |
| 1694 if (is_chromeos) { | 1692 if (is_chromeos) { |
| 1695 deps += [ "//device/bluetooth" ] | 1693 deps += [ "//device/bluetooth" ] |
| 1696 } | 1694 } |
| 1697 } | 1695 } |
| OLD | NEW |