| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 "common/system/tray/tray_item_view.cc", | 375 "common/system/tray/tray_item_view.cc", |
| 376 "common/system/tray/tray_item_view.h", | 376 "common/system/tray/tray_item_view.h", |
| 377 "common/system/tray/tray_notification_view.cc", | 377 "common/system/tray/tray_notification_view.cc", |
| 378 "common/system/tray/tray_notification_view.h", | 378 "common/system/tray/tray_notification_view.h", |
| 379 "common/system/tray/tray_popup_header_button.cc", | 379 "common/system/tray/tray_popup_header_button.cc", |
| 380 "common/system/tray/tray_popup_header_button.h", | 380 "common/system/tray/tray_popup_header_button.h", |
| 381 "common/system/tray/tray_popup_item_container.cc", | 381 "common/system/tray/tray_popup_item_container.cc", |
| 382 "common/system/tray/tray_popup_item_container.h", | 382 "common/system/tray/tray_popup_item_container.h", |
| 383 "common/system/tray/tray_popup_item_style.cc", | 383 "common/system/tray/tray_popup_item_style.cc", |
| 384 "common/system/tray/tray_popup_item_style.h", | 384 "common/system/tray/tray_popup_item_style.h", |
| 385 "common/system/tray/tray_popup_item_style_observer.h", | |
| 386 "common/system/tray/tray_popup_label_button.cc", | 385 "common/system/tray/tray_popup_label_button.cc", |
| 387 "common/system/tray/tray_popup_label_button.h", | 386 "common/system/tray/tray_popup_label_button.h", |
| 388 "common/system/tray/tray_popup_label_button_border.cc", | 387 "common/system/tray/tray_popup_label_button_border.cc", |
| 389 "common/system/tray/tray_popup_label_button_border.h", | 388 "common/system/tray/tray_popup_label_button_border.h", |
| 390 "common/system/tray/tray_utils.cc", | 389 "common/system/tray/tray_utils.cc", |
| 391 "common/system/tray/tray_utils.h", | 390 "common/system/tray/tray_utils.h", |
| 392 "common/system/tray/view_click_listener.h", | 391 "common/system/tray/view_click_listener.h", |
| 393 "common/system/tray_accessibility.cc", | 392 "common/system/tray_accessibility.cc", |
| 394 "common/system/tray_accessibility.h", | 393 "common/system/tray_accessibility.h", |
| 395 "common/system/update/tray_update.cc", | 394 "common/system/update/tray_update.cc", |
| (...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1645 if (is_win) { | 1644 if (is_win) { |
| 1646 configs -= [ "//build/config/win:console" ] | 1645 configs -= [ "//build/config/win:console" ] |
| 1647 configs += [ "//build/config/win:windowed" ] | 1646 configs += [ "//build/config/win:windowed" ] |
| 1648 deps += [ "//sandbox" ] | 1647 deps += [ "//sandbox" ] |
| 1649 } | 1648 } |
| 1650 | 1649 |
| 1651 if (is_chromeos) { | 1650 if (is_chromeos) { |
| 1652 deps += [ "//device/bluetooth" ] | 1651 deps += [ "//device/bluetooth" ] |
| 1653 } | 1652 } |
| 1654 } | 1653 } |
| OLD | NEW |