| 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 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 "display/root_window_transformers.cc", | 644 "display/root_window_transformers.cc", |
| 645 "display/root_window_transformers.h", | 645 "display/root_window_transformers.h", |
| 646 "display/screen_ash.cc", | 646 "display/screen_ash.cc", |
| 647 "display/screen_ash.h", | 647 "display/screen_ash.h", |
| 648 "display/screen_orientation_controller_chromeos.cc", | 648 "display/screen_orientation_controller_chromeos.cc", |
| 649 "display/screen_orientation_controller_chromeos.h", | 649 "display/screen_orientation_controller_chromeos.h", |
| 650 "display/screen_position_controller.cc", | 650 "display/screen_position_controller.cc", |
| 651 "display/screen_position_controller.h", | 651 "display/screen_position_controller.h", |
| 652 "display/shared_display_edge_indicator.cc", | 652 "display/shared_display_edge_indicator.cc", |
| 653 "display/shared_display_edge_indicator.h", | 653 "display/shared_display_edge_indicator.h", |
| 654 "display/shutdown_observer_chromeos.cc", |
| 655 "display/shutdown_observer_chromeos.h", |
| 654 "display/unified_mouse_warp_controller.cc", | 656 "display/unified_mouse_warp_controller.cc", |
| 655 "display/unified_mouse_warp_controller.h", | 657 "display/unified_mouse_warp_controller.h", |
| 656 "display/window_tree_host_manager.cc", | 658 "display/window_tree_host_manager.cc", |
| 657 "display/window_tree_host_manager.h", | 659 "display/window_tree_host_manager.h", |
| 658 "drag_drop/drag_drop_controller.cc", | 660 "drag_drop/drag_drop_controller.cc", |
| 659 "drag_drop/drag_drop_controller.h", | 661 "drag_drop/drag_drop_controller.h", |
| 660 "drag_drop/drag_drop_tracker.cc", | 662 "drag_drop/drag_drop_tracker.cc", |
| 661 "drag_drop/drag_drop_tracker.h", | 663 "drag_drop/drag_drop_tracker.h", |
| 662 "first_run/desktop_cleaner.cc", | 664 "first_run/desktop_cleaner.cc", |
| 663 "first_run/desktop_cleaner.h", | 665 "first_run/desktop_cleaner.h", |
| (...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1506 if (is_win) { | 1508 if (is_win) { |
| 1507 configs -= [ "//build/config/win:console" ] | 1509 configs -= [ "//build/config/win:console" ] |
| 1508 configs += [ "//build/config/win:windowed" ] | 1510 configs += [ "//build/config/win:windowed" ] |
| 1509 deps += [ "//sandbox" ] | 1511 deps += [ "//sandbox" ] |
| 1510 } | 1512 } |
| 1511 | 1513 |
| 1512 if (is_chromeos) { | 1514 if (is_chromeos) { |
| 1513 deps += [ "//device/bluetooth" ] | 1515 deps += [ "//device/bluetooth" ] |
| 1514 } | 1516 } |
| 1515 } | 1517 } |
| OLD | NEW |