| 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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 "display/display_animator_chromeos.cc", | 588 "display/display_animator_chromeos.cc", |
| 589 "display/display_animator_chromeos.h", | 589 "display/display_animator_chromeos.h", |
| 590 "display/display_change_observer_chromeos.cc", | 590 "display/display_change_observer_chromeos.cc", |
| 591 "display/display_change_observer_chromeos.h", | 591 "display/display_change_observer_chromeos.h", |
| 592 "display/display_color_manager_chromeos.cc", | 592 "display/display_color_manager_chromeos.cc", |
| 593 "display/display_color_manager_chromeos.h", | 593 "display/display_color_manager_chromeos.h", |
| 594 "display/display_configuration_controller.cc", | 594 "display/display_configuration_controller.cc", |
| 595 "display/display_configuration_controller.h", | 595 "display/display_configuration_controller.h", |
| 596 "display/display_error_observer_chromeos.cc", | 596 "display/display_error_observer_chromeos.cc", |
| 597 "display/display_error_observer_chromeos.h", | 597 "display/display_error_observer_chromeos.h", |
| 598 "display/display_manager.cc", | |
| 599 "display/display_manager.h", | |
| 600 "display/display_pref_util.h", | 598 "display/display_pref_util.h", |
| 601 "display/display_util.cc", | 599 "display/display_util.cc", |
| 602 "display/display_util.h", | 600 "display/display_util.h", |
| 603 "display/event_transformation_handler.cc", | 601 "display/event_transformation_handler.cc", |
| 604 "display/event_transformation_handler.h", | 602 "display/event_transformation_handler.h", |
| 605 "display/extended_mouse_warp_controller.cc", | 603 "display/extended_mouse_warp_controller.cc", |
| 606 "display/extended_mouse_warp_controller.h", | 604 "display/extended_mouse_warp_controller.h", |
| 607 "display/json_converter.cc", | 605 "display/json_converter.cc", |
| 608 "display/json_converter.h", | 606 "display/json_converter.h", |
| 609 "display/mirror_window_controller.cc", | 607 "display/mirror_window_controller.cc", |
| (...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1473 if (is_win) { | 1471 if (is_win) { |
| 1474 configs -= [ "//build/config/win:console" ] | 1472 configs -= [ "//build/config/win:console" ] |
| 1475 configs += [ "//build/config/win:windowed" ] | 1473 configs += [ "//build/config/win:windowed" ] |
| 1476 deps += [ "//sandbox" ] | 1474 deps += [ "//sandbox" ] |
| 1477 } | 1475 } |
| 1478 | 1476 |
| 1479 if (is_chromeos) { | 1477 if (is_chromeos) { |
| 1480 deps += [ "//device/bluetooth" ] | 1478 deps += [ "//device/bluetooth" ] |
| 1481 } | 1479 } |
| 1482 } | 1480 } |
| OLD | NEW |