| 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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 "common/system/tray/tray_item_more.cc", | 377 "common/system/tray/tray_item_more.cc", |
| 378 "common/system/tray/tray_item_more.h", | 378 "common/system/tray/tray_item_more.h", |
| 379 "common/system/tray/tray_item_view.cc", | 379 "common/system/tray/tray_item_view.cc", |
| 380 "common/system/tray/tray_item_view.h", | 380 "common/system/tray/tray_item_view.h", |
| 381 "common/system/tray/tray_notification_view.cc", | 381 "common/system/tray/tray_notification_view.cc", |
| 382 "common/system/tray/tray_notification_view.h", | 382 "common/system/tray/tray_notification_view.h", |
| 383 "common/system/tray/tray_popup_header_button.cc", | 383 "common/system/tray/tray_popup_header_button.cc", |
| 384 "common/system/tray/tray_popup_header_button.h", | 384 "common/system/tray/tray_popup_header_button.h", |
| 385 "common/system/tray/tray_popup_item_container.cc", | 385 "common/system/tray/tray_popup_item_container.cc", |
| 386 "common/system/tray/tray_popup_item_container.h", | 386 "common/system/tray/tray_popup_item_container.h", |
| 387 "common/system/tray/tray_popup_item_style.cc", |
| 388 "common/system/tray/tray_popup_item_style.h", |
| 389 "common/system/tray/tray_popup_item_style_observer.h", |
| 387 "common/system/tray/tray_popup_label_button.cc", | 390 "common/system/tray/tray_popup_label_button.cc", |
| 388 "common/system/tray/tray_popup_label_button.h", | 391 "common/system/tray/tray_popup_label_button.h", |
| 389 "common/system/tray/tray_popup_label_button_border.cc", | 392 "common/system/tray/tray_popup_label_button_border.cc", |
| 390 "common/system/tray/tray_popup_label_button_border.h", | 393 "common/system/tray/tray_popup_label_button_border.h", |
| 391 "common/system/tray/tray_utils.cc", | 394 "common/system/tray/tray_utils.cc", |
| 392 "common/system/tray/tray_utils.h", | 395 "common/system/tray/tray_utils.h", |
| 393 "common/system/tray/view_click_listener.h", | 396 "common/system/tray/view_click_listener.h", |
| 394 "common/system/tray_accessibility.cc", | 397 "common/system/tray_accessibility.cc", |
| 395 "common/system/tray_accessibility.h", | 398 "common/system/tray_accessibility.h", |
| 396 "common/system/update/tray_update.cc", | 399 "common/system/update/tray_update.cc", |
| (...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1635 if (is_win) { | 1638 if (is_win) { |
| 1636 configs -= [ "//build/config/win:console" ] | 1639 configs -= [ "//build/config/win:console" ] |
| 1637 configs += [ "//build/config/win:windowed" ] | 1640 configs += [ "//build/config/win:windowed" ] |
| 1638 deps += [ "//sandbox" ] | 1641 deps += [ "//sandbox" ] |
| 1639 } | 1642 } |
| 1640 | 1643 |
| 1641 if (is_chromeos) { | 1644 if (is_chromeos) { |
| 1642 deps += [ "//device/bluetooth" ] | 1645 deps += [ "//device/bluetooth" ] |
| 1643 } | 1646 } |
| 1644 } | 1647 } |
| OLD | NEW |