| 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 "display/display_animator_chromeos.cc", | 608 "display/display_animator_chromeos.cc", |
| 609 "display/display_animator_chromeos.h", | 609 "display/display_animator_chromeos.h", |
| 610 "display/display_change_observer_chromeos.cc", | 610 "display/display_change_observer_chromeos.cc", |
| 611 "display/display_change_observer_chromeos.h", | 611 "display/display_change_observer_chromeos.h", |
| 612 "display/display_color_manager_chromeos.cc", | 612 "display/display_color_manager_chromeos.cc", |
| 613 "display/display_color_manager_chromeos.h", | 613 "display/display_color_manager_chromeos.h", |
| 614 "display/display_configuration_controller.cc", | 614 "display/display_configuration_controller.cc", |
| 615 "display/display_configuration_controller.h", | 615 "display/display_configuration_controller.h", |
| 616 "display/display_error_observer_chromeos.cc", | 616 "display/display_error_observer_chromeos.cc", |
| 617 "display/display_error_observer_chromeos.h", | 617 "display/display_error_observer_chromeos.h", |
| 618 "display/display_manager.cc", | |
| 619 "display/display_manager.h", | |
| 620 "display/display_pref_util.h", | 618 "display/display_pref_util.h", |
| 621 "display/display_util.cc", | 619 "display/display_util.cc", |
| 622 "display/display_util.h", | 620 "display/display_util.h", |
| 623 "display/event_transformation_handler.cc", | 621 "display/event_transformation_handler.cc", |
| 624 "display/event_transformation_handler.h", | 622 "display/event_transformation_handler.h", |
| 625 "display/extended_mouse_warp_controller.cc", | 623 "display/extended_mouse_warp_controller.cc", |
| 626 "display/extended_mouse_warp_controller.h", | 624 "display/extended_mouse_warp_controller.h", |
| 627 "display/json_converter.cc", | 625 "display/json_converter.cc", |
| 628 "display/json_converter.h", | 626 "display/json_converter.h", |
| 629 "display/mirror_window_controller.cc", | 627 "display/mirror_window_controller.cc", |
| (...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1493 if (is_win) { | 1491 if (is_win) { |
| 1494 configs -= [ "//build/config/win:console" ] | 1492 configs -= [ "//build/config/win:console" ] |
| 1495 configs += [ "//build/config/win:windowed" ] | 1493 configs += [ "//build/config/win:windowed" ] |
| 1496 deps += [ "//sandbox" ] | 1494 deps += [ "//sandbox" ] |
| 1497 } | 1495 } |
| 1498 | 1496 |
| 1499 if (is_chromeos) { | 1497 if (is_chromeos) { |
| 1500 deps += [ "//device/bluetooth" ] | 1498 deps += [ "//device/bluetooth" ] |
| 1501 } | 1499 } |
| 1502 } | 1500 } |
| OLD | NEW |