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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 "common/shelf/shelf_layout_manager.h", | 156 "common/shelf/shelf_layout_manager.h", |
157 "common/shelf/shelf_layout_manager_observer.h", | 157 "common/shelf/shelf_layout_manager_observer.h", |
158 "common/shelf/shelf_locking_manager.cc", | 158 "common/shelf/shelf_locking_manager.cc", |
159 "common/shelf/shelf_locking_manager.h", | 159 "common/shelf/shelf_locking_manager.h", |
160 "common/shelf/shelf_menu_model.h", | 160 "common/shelf/shelf_menu_model.h", |
161 "common/shelf/shelf_model.cc", | 161 "common/shelf/shelf_model.cc", |
162 "common/shelf/shelf_model.h", | 162 "common/shelf/shelf_model.h", |
163 "common/shelf/shelf_model_observer.h", | 163 "common/shelf/shelf_model_observer.h", |
164 "common/shelf/shelf_tooltip_manager.cc", | 164 "common/shelf/shelf_tooltip_manager.cc", |
165 "common/shelf/shelf_tooltip_manager.h", | 165 "common/shelf/shelf_tooltip_manager.h", |
166 "common/shelf/shelf_types.h", | |
167 "common/shelf/shelf_view.cc", | 166 "common/shelf/shelf_view.cc", |
168 "common/shelf/shelf_view.h", | 167 "common/shelf/shelf_view.h", |
169 "common/shelf/shelf_widget.cc", | 168 "common/shelf/shelf_widget.cc", |
170 "common/shelf/shelf_widget.h", | 169 "common/shelf/shelf_widget.h", |
171 "common/shelf/shelf_window_watcher.cc", | 170 "common/shelf/shelf_window_watcher.cc", |
172 "common/shelf/shelf_window_watcher.h", | 171 "common/shelf/shelf_window_watcher.h", |
173 "common/shelf/shelf_window_watcher_item_delegate.cc", | 172 "common/shelf/shelf_window_watcher_item_delegate.cc", |
174 "common/shelf/shelf_window_watcher_item_delegate.h", | 173 "common/shelf/shelf_window_watcher_item_delegate.h", |
175 "common/shelf/wm_shelf.cc", | 174 "common/shelf/wm_shelf.cc", |
176 "common/shelf/wm_shelf.h", | 175 "common/shelf/wm_shelf.h", |
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 configs += [ "//build/config:precompiled_headers" ] | 815 configs += [ "//build/config:precompiled_headers" ] |
817 defines = [ "ASH_IMPLEMENTATION" ] | 816 defines = [ "ASH_IMPLEMENTATION" ] |
818 | 817 |
819 public_deps = [ | 818 public_deps = [ |
820 "//ash/common/strings", | 819 "//ash/common/strings", |
821 "//ash/resources", | 820 "//ash/resources", |
822 "//ash/resources/vector_icons", | 821 "//ash/resources/vector_icons", |
823 ] | 822 ] |
824 deps = [ | 823 deps = [ |
825 "//ash/autoclick/common:autoclick", | 824 "//ash/autoclick/common:autoclick", |
| 825 "//ash/public/cpp", |
826 "//ash/touch_hud", | 826 "//ash/touch_hud", |
827 "//base", | 827 "//base", |
828 "//base:i18n", | 828 "//base:i18n", |
829 "//base/third_party/dynamic_annotations", | 829 "//base/third_party/dynamic_annotations", |
830 "//cc", | 830 "//cc", |
831 "//components/device_event_log", | 831 "//components/device_event_log", |
832 "//components/onc", | 832 "//components/onc", |
833 "//components/signin/core/account_id", | 833 "//components/signin/core/account_id", |
834 "//components/user_manager", | 834 "//components/user_manager", |
835 "//components/wallpaper", | 835 "//components/wallpaper", |
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1672 if (is_win) { | 1672 if (is_win) { |
1673 configs -= [ "//build/config/win:console" ] | 1673 configs -= [ "//build/config/win:console" ] |
1674 configs += [ "//build/config/win:windowed" ] | 1674 configs += [ "//build/config/win:windowed" ] |
1675 deps += [ "//sandbox" ] | 1675 deps += [ "//sandbox" ] |
1676 } | 1676 } |
1677 | 1677 |
1678 if (is_chromeos) { | 1678 if (is_chromeos) { |
1679 deps += [ "//device/bluetooth" ] | 1679 deps += [ "//device/bluetooth" ] |
1680 } | 1680 } |
1681 } | 1681 } |
OLD | NEW |