Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: ash/BUILD.gn

Issue 2381753002: Use mojo SystemTray interfaces for both mash and classic ash (Closed)
Patch Set: cleanup Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ash/common/DEPS » ('j') | ash/common/system/tray/system_tray_controller.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 "common/system/tray/label_tray_view.cc", 349 "common/system/tray/label_tray_view.cc",
350 "common/system/tray/label_tray_view.h", 350 "common/system/tray/label_tray_view.h",
351 "common/system/tray/special_popup_row.cc", 351 "common/system/tray/special_popup_row.cc",
352 "common/system/tray/special_popup_row.h", 352 "common/system/tray/special_popup_row.h",
353 "common/system/tray/system_menu_button.cc", 353 "common/system/tray/system_menu_button.cc",
354 "common/system/tray/system_menu_button.h", 354 "common/system/tray/system_menu_button.h",
355 "common/system/tray/system_tray.cc", 355 "common/system/tray/system_tray.cc",
356 "common/system/tray/system_tray.h", 356 "common/system/tray/system_tray.h",
357 "common/system/tray/system_tray_bubble.cc", 357 "common/system/tray/system_tray_bubble.cc",
358 "common/system/tray/system_tray_bubble.h", 358 "common/system/tray/system_tray_bubble.h",
359 "common/system/tray/system_tray_controller.cc",
360 "common/system/tray/system_tray_controller.h",
359 "common/system/tray/system_tray_delegate.cc", 361 "common/system/tray/system_tray_delegate.cc",
360 "common/system/tray/system_tray_delegate.h", 362 "common/system/tray/system_tray_delegate.h",
361 "common/system/tray/system_tray_item.cc", 363 "common/system/tray/system_tray_item.cc",
362 "common/system/tray/system_tray_item.h", 364 "common/system/tray/system_tray_item.h",
363 "common/system/tray/system_tray_notifier.cc", 365 "common/system/tray/system_tray_notifier.cc",
364 "common/system/tray/system_tray_notifier.h", 366 "common/system/tray/system_tray_notifier.h",
365 "common/system/tray/throbber_view.cc", 367 "common/system/tray/throbber_view.cc",
366 "common/system/tray/throbber_view.h", 368 "common/system/tray/throbber_view.h",
367 "common/system/tray/tray_background_view.cc", 369 "common/system/tray/tray_background_view.cc",
368 "common/system/tray/tray_background_view.h", 370 "common/system/tray/tray_background_view.h",
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 configs += [ "//build/config:precompiled_headers" ] 818 configs += [ "//build/config:precompiled_headers" ]
817 defines = [ "ASH_IMPLEMENTATION" ] 819 defines = [ "ASH_IMPLEMENTATION" ]
818 820
819 public_deps = [ 821 public_deps = [
820 "//ash/common/strings", 822 "//ash/common/strings",
821 "//ash/resources", 823 "//ash/resources",
822 "//ash/resources/vector_icons", 824 "//ash/resources/vector_icons",
823 ] 825 ]
824 deps = [ 826 deps = [
825 "//ash/autoclick/common:autoclick", 827 "//ash/autoclick/common:autoclick",
828 # TODO: Why does this cause a cycle? ugh, typemap for shelf item types
829 "//ash/public/interfaces",
826 "//ash/touch_hud", 830 "//ash/touch_hud",
827 "//base", 831 "//base",
828 "//base:i18n", 832 "//base:i18n",
829 "//base/third_party/dynamic_annotations", 833 "//base/third_party/dynamic_annotations",
830 "//cc", 834 "//cc",
831 "//components/device_event_log", 835 "//components/device_event_log",
832 "//components/onc", 836 "//components/onc",
833 "//components/signin/core/account_id", 837 "//components/signin/core/account_id",
834 "//components/user_manager", 838 "//components/user_manager",
835 "//components/wallpaper", 839 "//components/wallpaper",
836 "//media", 840 "//media",
837 "//net", 841 "//net",
842 # TODO: public_deps?
843 "//services/shell/public/cpp",
838 "//skia", 844 "//skia",
839 "//third_party/icu", 845 "//third_party/icu",
840 "//ui/accessibility", 846 "//ui/accessibility",
841 "//ui/app_list/presenter", 847 "//ui/app_list/presenter",
842 "//ui/aura", 848 "//ui/aura",
843 "//ui/base", 849 "//ui/base",
844 "//ui/base:ui_data_pack", 850 "//ui/base:ui_data_pack",
845 "//ui/base/ime", 851 "//ui/base/ime",
846 "//ui/compositor", 852 "//ui/compositor",
847 "//ui/display", 853 "//ui/display",
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
1672 if (is_win) { 1678 if (is_win) {
1673 configs -= [ "//build/config/win:console" ] 1679 configs -= [ "//build/config/win:console" ]
1674 configs += [ "//build/config/win:windowed" ] 1680 configs += [ "//build/config/win:windowed" ]
1675 deps += [ "//sandbox" ] 1681 deps += [ "//sandbox" ]
1676 } 1682 }
1677 1683
1678 if (is_chromeos) { 1684 if (is_chromeos) {
1679 deps += [ "//device/bluetooth" ] 1685 deps += [ "//device/bluetooth" ]
1680 } 1686 }
1681 } 1687 }
OLDNEW
« no previous file with comments | « no previous file | ash/common/DEPS » ('j') | ash/common/system/tray/system_tray_controller.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698