| 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 "common/system/tray/tray_popup_header_button.cc", | 413 "common/system/tray/tray_popup_header_button.cc", |
| 414 "common/system/tray/tray_popup_header_button.h", | 414 "common/system/tray/tray_popup_header_button.h", |
| 415 "common/system/tray/tray_popup_item_container.cc", | 415 "common/system/tray/tray_popup_item_container.cc", |
| 416 "common/system/tray/tray_popup_item_container.h", | 416 "common/system/tray/tray_popup_item_container.h", |
| 417 "common/system/tray/tray_popup_item_style.cc", | 417 "common/system/tray/tray_popup_item_style.cc", |
| 418 "common/system/tray/tray_popup_item_style.h", | 418 "common/system/tray/tray_popup_item_style.h", |
| 419 "common/system/tray/tray_popup_label_button.cc", | 419 "common/system/tray/tray_popup_label_button.cc", |
| 420 "common/system/tray/tray_popup_label_button.h", | 420 "common/system/tray/tray_popup_label_button.h", |
| 421 "common/system/tray/tray_popup_label_button_border.cc", | 421 "common/system/tray/tray_popup_label_button_border.cc", |
| 422 "common/system/tray/tray_popup_label_button_border.h", | 422 "common/system/tray/tray_popup_label_button_border.h", |
| 423 "common/system/tray/tray_popup_layout_factory.cc", | 423 "common/system/tray/tray_popup_utils.cc", |
| 424 "common/system/tray/tray_popup_layout_factory.h", | 424 "common/system/tray/tray_popup_utils.h", |
| 425 "common/system/tray/tray_utils.cc", | 425 "common/system/tray/tray_utils.cc", |
| 426 "common/system/tray/tray_utils.h", | 426 "common/system/tray/tray_utils.h", |
| 427 "common/system/tray/tri_view.cc", | 427 "common/system/tray/tri_view.cc", |
| 428 "common/system/tray/tri_view.h", | 428 "common/system/tray/tri_view.h", |
| 429 "common/system/tray/view_click_listener.h", | 429 "common/system/tray/view_click_listener.h", |
| 430 "common/system/tray_accessibility.cc", | 430 "common/system/tray_accessibility.cc", |
| 431 "common/system/tray_accessibility.h", | 431 "common/system/tray_accessibility.h", |
| 432 "common/system/update/tray_update.cc", | 432 "common/system/update/tray_update.cc", |
| 433 "common/system/update/tray_update.h", | 433 "common/system/update/tray_update.h", |
| 434 "common/system/update/update_observer.h", | 434 "common/system/update/update_observer.h", |
| (...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1494 if (is_win) { | 1494 if (is_win) { |
| 1495 configs -= [ "//build/config/win:console" ] | 1495 configs -= [ "//build/config/win:console" ] |
| 1496 configs += [ "//build/config/win:windowed" ] | 1496 configs += [ "//build/config/win:windowed" ] |
| 1497 deps += [ "//sandbox" ] | 1497 deps += [ "//sandbox" ] |
| 1498 } | 1498 } |
| 1499 | 1499 |
| 1500 if (is_chromeos) { | 1500 if (is_chromeos) { |
| 1501 deps += [ "//device/bluetooth" ] | 1501 deps += [ "//device/bluetooth" ] |
| 1502 } | 1502 } |
| 1503 } | 1503 } |
| OLD | NEW |