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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 "common/system/toast/toast_overlay.cc", | 357 "common/system/toast/toast_overlay.cc", |
358 "common/system/toast/toast_overlay.h", | 358 "common/system/toast/toast_overlay.h", |
359 "common/system/tray/actionable_view.cc", | 359 "common/system/tray/actionable_view.cc", |
360 "common/system/tray/actionable_view.h", | 360 "common/system/tray/actionable_view.h", |
361 "common/system/tray/default_system_tray_delegate.cc", | 361 "common/system/tray/default_system_tray_delegate.cc", |
362 "common/system/tray/default_system_tray_delegate.h", | 362 "common/system/tray/default_system_tray_delegate.h", |
363 "common/system/tray/fixed_sized_image_view.cc", | 363 "common/system/tray/fixed_sized_image_view.cc", |
364 "common/system/tray/fixed_sized_image_view.h", | 364 "common/system/tray/fixed_sized_image_view.h", |
365 "common/system/tray/fixed_sized_scroll_view.cc", | 365 "common/system/tray/fixed_sized_scroll_view.cc", |
366 "common/system/tray/fixed_sized_scroll_view.h", | 366 "common/system/tray/fixed_sized_scroll_view.h", |
| 367 "common/system/tray/header_list_scroll_view.cc", |
| 368 "common/system/tray/header_list_scroll_view.h", |
367 "common/system/tray/hover_highlight_view.cc", | 369 "common/system/tray/hover_highlight_view.cc", |
368 "common/system/tray/hover_highlight_view.h", | 370 "common/system/tray/hover_highlight_view.h", |
369 "common/system/tray/ime_info.cc", | 371 "common/system/tray/ime_info.cc", |
370 "common/system/tray/ime_info.h", | 372 "common/system/tray/ime_info.h", |
371 "common/system/tray/label_tray_view.cc", | 373 "common/system/tray/label_tray_view.cc", |
372 "common/system/tray/label_tray_view.h", | 374 "common/system/tray/label_tray_view.h", |
373 "common/system/tray/size_range_layout.cc", | 375 "common/system/tray/size_range_layout.cc", |
374 "common/system/tray/size_range_layout.h", | 376 "common/system/tray/size_range_layout.h", |
375 "common/system/tray/special_popup_row.cc", | 377 "common/system/tray/special_popup_row.cc", |
376 "common/system/tray/special_popup_row.h", | 378 "common/system/tray/special_popup_row.h", |
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1493 if (is_win) { | 1495 if (is_win) { |
1494 configs -= [ "//build/config/win:console" ] | 1496 configs -= [ "//build/config/win:console" ] |
1495 configs += [ "//build/config/win:windowed" ] | 1497 configs += [ "//build/config/win:windowed" ] |
1496 deps += [ "//sandbox" ] | 1498 deps += [ "//sandbox" ] |
1497 } | 1499 } |
1498 | 1500 |
1499 if (is_chromeos) { | 1501 if (is_chromeos) { |
1500 deps += [ "//device/bluetooth" ] | 1502 deps += [ "//device/bluetooth" ] |
1501 } | 1503 } |
1502 } | 1504 } |
OLD | NEW |