Chromium Code Reviews| 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 |
|
tdanderson
2016/09/12 18:51:47
nit: "blue-tooth" -> "Bluetooth" in the CL title a
bruthig
2016/09/15 18:56:29
Done.
| |
| 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) |
| 11 assert(enable_hidpi) | 11 assert(enable_hidpi) |
| 12 | 12 |
| (...skipping 364 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 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1637 if (is_win) { | 1640 if (is_win) { |
| 1638 configs -= [ "//build/config/win:console" ] | 1641 configs -= [ "//build/config/win:console" ] |
| 1639 configs += [ "//build/config/win:windowed" ] | 1642 configs += [ "//build/config/win:windowed" ] |
| 1640 deps += [ "//sandbox" ] | 1643 deps += [ "//sandbox" ] |
| 1641 } | 1644 } |
| 1642 | 1645 |
| 1643 if (is_chromeos) { | 1646 if (is_chromeos) { |
| 1644 deps += [ "//device/bluetooth" ] | 1647 deps += [ "//device/bluetooth" ] |
| 1645 } | 1648 } |
| 1646 } | 1649 } |
| OLD | NEW |