| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 "common/system/tray/ime_info.cc", | 373 "common/system/tray/ime_info.cc", |
| 374 "common/system/tray/ime_info.h", | 374 "common/system/tray/ime_info.h", |
| 375 "common/system/tray/label_tray_view.cc", | 375 "common/system/tray/label_tray_view.cc", |
| 376 "common/system/tray/label_tray_view.h", | 376 "common/system/tray/label_tray_view.h", |
| 377 "common/system/tray/size_range_layout.cc", | 377 "common/system/tray/size_range_layout.cc", |
| 378 "common/system/tray/size_range_layout.h", | 378 "common/system/tray/size_range_layout.h", |
| 379 "common/system/tray/special_popup_row.cc", | 379 "common/system/tray/special_popup_row.cc", |
| 380 "common/system/tray/special_popup_row.h", | 380 "common/system/tray/special_popup_row.h", |
| 381 "common/system/tray/system_menu_button.cc", | 381 "common/system/tray/system_menu_button.cc", |
| 382 "common/system/tray/system_menu_button.h", | 382 "common/system/tray/system_menu_button.h", |
| 383 "common/system/tray/system_menu_toggle_button.cc", |
| 384 "common/system/tray/system_menu_toggle_button.h", |
| 383 "common/system/tray/system_tray.cc", | 385 "common/system/tray/system_tray.cc", |
| 384 "common/system/tray/system_tray.h", | 386 "common/system/tray/system_tray.h", |
| 385 "common/system/tray/system_tray_bubble.cc", | 387 "common/system/tray/system_tray_bubble.cc", |
| 386 "common/system/tray/system_tray_bubble.h", | 388 "common/system/tray/system_tray_bubble.h", |
| 387 "common/system/tray/system_tray_controller.cc", | 389 "common/system/tray/system_tray_controller.cc", |
| 388 "common/system/tray/system_tray_controller.h", | 390 "common/system/tray/system_tray_controller.h", |
| 389 "common/system/tray/system_tray_delegate.cc", | 391 "common/system/tray/system_tray_delegate.cc", |
| 390 "common/system/tray/system_tray_delegate.h", | 392 "common/system/tray/system_tray_delegate.h", |
| 391 "common/system/tray/system_tray_item.cc", | 393 "common/system/tray/system_tray_item.cc", |
| 392 "common/system/tray/system_tray_item.h", | 394 "common/system/tray/system_tray_item.h", |
| (...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1492 if (is_win) { | 1494 if (is_win) { |
| 1493 configs -= [ "//build/config/win:console" ] | 1495 configs -= [ "//build/config/win:console" ] |
| 1494 configs += [ "//build/config/win:windowed" ] | 1496 configs += [ "//build/config/win:windowed" ] |
| 1495 deps += [ "//sandbox" ] | 1497 deps += [ "//sandbox" ] |
| 1496 } | 1498 } |
| 1497 | 1499 |
| 1498 if (is_chromeos) { | 1500 if (is_chromeos) { |
| 1499 deps += [ "//device/bluetooth" ] | 1501 deps += [ "//device/bluetooth" ] |
| 1500 } | 1502 } |
| 1501 } | 1503 } |
| OLD | NEW |