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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 "common/shelf/shelf_alignment_menu.h", | 145 "common/shelf/shelf_alignment_menu.h", |
146 "common/shelf/shelf_background_animator.cc", | 146 "common/shelf/shelf_background_animator.cc", |
147 "common/shelf/shelf_background_animator.h", | 147 "common/shelf/shelf_background_animator.h", |
148 "common/shelf/shelf_background_animator_observer.h", | 148 "common/shelf/shelf_background_animator_observer.h", |
149 "common/shelf/shelf_button.cc", | 149 "common/shelf/shelf_button.cc", |
150 "common/shelf/shelf_button.h", | 150 "common/shelf/shelf_button.h", |
151 "common/shelf/shelf_button_pressed_metric_tracker.cc", | 151 "common/shelf/shelf_button_pressed_metric_tracker.cc", |
152 "common/shelf/shelf_button_pressed_metric_tracker.h", | 152 "common/shelf/shelf_button_pressed_metric_tracker.h", |
153 "common/shelf/shelf_constants.cc", | 153 "common/shelf/shelf_constants.cc", |
154 "common/shelf/shelf_constants.h", | 154 "common/shelf/shelf_constants.h", |
| 155 "common/shelf/shelf_controller.cc", |
| 156 "common/shelf/shelf_controller.h", |
155 "common/shelf/shelf_delegate.h", | 157 "common/shelf/shelf_delegate.h", |
156 "common/shelf/shelf_item_delegate.h", | 158 "common/shelf/shelf_item_delegate.h", |
157 "common/shelf/shelf_item_types.cc", | 159 "common/shelf/shelf_item_types.cc", |
158 "common/shelf/shelf_item_types.h", | 160 "common/shelf/shelf_item_types.h", |
159 "common/shelf/shelf_layout_manager.cc", | 161 "common/shelf/shelf_layout_manager.cc", |
160 "common/shelf/shelf_layout_manager.h", | 162 "common/shelf/shelf_layout_manager.h", |
161 "common/shelf/shelf_layout_manager_observer.h", | 163 "common/shelf/shelf_layout_manager_observer.h", |
162 "common/shelf/shelf_locking_manager.cc", | 164 "common/shelf/shelf_locking_manager.cc", |
163 "common/shelf/shelf_locking_manager.h", | 165 "common/shelf/shelf_locking_manager.h", |
164 "common/shelf/shelf_menu_model.h", | 166 "common/shelf/shelf_menu_model.h", |
(...skipping 1523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1688 if (is_win) { | 1690 if (is_win) { |
1689 configs -= [ "//build/config/win:console" ] | 1691 configs -= [ "//build/config/win:console" ] |
1690 configs += [ "//build/config/win:windowed" ] | 1692 configs += [ "//build/config/win:windowed" ] |
1691 deps += [ "//sandbox" ] | 1693 deps += [ "//sandbox" ] |
1692 } | 1694 } |
1693 | 1695 |
1694 if (is_chromeos) { | 1696 if (is_chromeos) { |
1695 deps += [ "//device/bluetooth" ] | 1697 deps += [ "//device/bluetooth" ] |
1696 } | 1698 } |
1697 } | 1699 } |
OLD | NEW |