| 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 "common/system/date/date_view.cc", | 313 "common/system/date/date_view.cc", |
| 314 "common/system/date/date_view.h", | 314 "common/system/date/date_view.h", |
| 315 "common/system/date/tray_date.cc", | 315 "common/system/date/tray_date.cc", |
| 316 "common/system/date/tray_date.h", | 316 "common/system/date/tray_date.h", |
| 317 "common/system/ime/ime_observer.h", | 317 "common/system/ime/ime_observer.h", |
| 318 "common/system/ime/tray_ime_chromeos.cc", | 318 "common/system/ime/tray_ime_chromeos.cc", |
| 319 "common/system/ime/tray_ime_chromeos.h", | 319 "common/system/ime/tray_ime_chromeos.h", |
| 320 "common/system/keyboard_brightness_control_delegate.h", | 320 "common/system/keyboard_brightness_control_delegate.h", |
| 321 "common/system/locale/locale_notification_controller.cc", | 321 "common/system/locale/locale_notification_controller.cc", |
| 322 "common/system/locale/locale_notification_controller.h", | 322 "common/system/locale/locale_notification_controller.h", |
| 323 "common/system/locale/locale_observer.h", | |
| 324 "common/system/networking_config_delegate.cc", | 323 "common/system/networking_config_delegate.cc", |
| 325 "common/system/networking_config_delegate.h", | 324 "common/system/networking_config_delegate.h", |
| 326 "common/system/overview/overview_button_tray.cc", | 325 "common/system/overview/overview_button_tray.cc", |
| 327 "common/system/overview/overview_button_tray.h", | 326 "common/system/overview/overview_button_tray.h", |
| 328 "common/system/status_area_layout_manager.cc", | 327 "common/system/status_area_layout_manager.cc", |
| 329 "common/system/status_area_layout_manager.h", | 328 "common/system/status_area_layout_manager.h", |
| 330 "common/system/status_area_widget.cc", | 329 "common/system/status_area_widget.cc", |
| 331 "common/system/status_area_widget.h", | 330 "common/system/status_area_widget.h", |
| 332 "common/system/status_area_widget_delegate.cc", | 331 "common/system/status_area_widget_delegate.cc", |
| 333 "common/system/status_area_widget_delegate.h", | 332 "common/system/status_area_widget_delegate.h", |
| (...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1475 if (is_win) { | 1474 if (is_win) { |
| 1476 configs -= [ "//build/config/win:console" ] | 1475 configs -= [ "//build/config/win:console" ] |
| 1477 configs += [ "//build/config/win:windowed" ] | 1476 configs += [ "//build/config/win:windowed" ] |
| 1478 deps += [ "//sandbox" ] | 1477 deps += [ "//sandbox" ] |
| 1479 } | 1478 } |
| 1480 | 1479 |
| 1481 if (is_chromeos) { | 1480 if (is_chromeos) { |
| 1482 deps += [ "//device/bluetooth" ] | 1481 deps += [ "//device/bluetooth" ] |
| 1483 } | 1482 } |
| 1484 } | 1483 } |
| OLD | NEW |