| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 "common/system/tray/fixed_sized_scroll_view.cc", | 339 "common/system/tray/fixed_sized_scroll_view.cc", |
| 340 "common/system/tray/fixed_sized_scroll_view.h", | 340 "common/system/tray/fixed_sized_scroll_view.h", |
| 341 "common/system/tray/hover_highlight_view.cc", | 341 "common/system/tray/hover_highlight_view.cc", |
| 342 "common/system/tray/hover_highlight_view.h", | 342 "common/system/tray/hover_highlight_view.h", |
| 343 "common/system/tray/ime_info.cc", | 343 "common/system/tray/ime_info.cc", |
| 344 "common/system/tray/ime_info.h", | 344 "common/system/tray/ime_info.h", |
| 345 "common/system/tray/label_tray_view.cc", | 345 "common/system/tray/label_tray_view.cc", |
| 346 "common/system/tray/label_tray_view.h", | 346 "common/system/tray/label_tray_view.h", |
| 347 "common/system/tray/special_popup_row.cc", | 347 "common/system/tray/special_popup_row.cc", |
| 348 "common/system/tray/special_popup_row.h", | 348 "common/system/tray/special_popup_row.h", |
| 349 "common/system/tray/system_menu_button.cc", |
| 350 "common/system/tray/system_menu_button.h", |
| 349 "common/system/tray/system_tray.cc", | 351 "common/system/tray/system_tray.cc", |
| 350 "common/system/tray/system_tray.h", | 352 "common/system/tray/system_tray.h", |
| 351 "common/system/tray/system_tray_bubble.cc", | 353 "common/system/tray/system_tray_bubble.cc", |
| 352 "common/system/tray/system_tray_bubble.h", | 354 "common/system/tray/system_tray_bubble.h", |
| 353 "common/system/tray/system_tray_delegate.cc", | 355 "common/system/tray/system_tray_delegate.cc", |
| 354 "common/system/tray/system_tray_delegate.h", | 356 "common/system/tray/system_tray_delegate.h", |
| 355 "common/system/tray/system_tray_item.cc", | 357 "common/system/tray/system_tray_item.cc", |
| 356 "common/system/tray/system_tray_item.h", | 358 "common/system/tray/system_tray_item.h", |
| 357 "common/system/tray/system_tray_notifier.cc", | 359 "common/system/tray/system_tray_notifier.cc", |
| 358 "common/system/tray/system_tray_notifier.h", | 360 "common/system/tray/system_tray_notifier.h", |
| (...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1645 if (is_win) { | 1647 if (is_win) { |
| 1646 configs -= [ "//build/config/win:console" ] | 1648 configs -= [ "//build/config/win:console" ] |
| 1647 configs += [ "//build/config/win:windowed" ] | 1649 configs += [ "//build/config/win:windowed" ] |
| 1648 deps += [ "//sandbox" ] | 1650 deps += [ "//sandbox" ] |
| 1649 } | 1651 } |
| 1650 | 1652 |
| 1651 if (is_chromeos) { | 1653 if (is_chromeos) { |
| 1652 deps += [ "//device/bluetooth" ] | 1654 deps += [ "//device/bluetooth" ] |
| 1653 } | 1655 } |
| 1654 } | 1656 } |
| OLD | NEW |