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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 "common/shelf/shelf_window_watcher.cc", | 176 "common/shelf/shelf_window_watcher.cc", |
177 "common/shelf/shelf_window_watcher.h", | 177 "common/shelf/shelf_window_watcher.h", |
178 "common/shelf/shelf_window_watcher_item_delegate.cc", | 178 "common/shelf/shelf_window_watcher_item_delegate.cc", |
179 "common/shelf/shelf_window_watcher_item_delegate.h", | 179 "common/shelf/shelf_window_watcher_item_delegate.h", |
180 "common/shelf/wm_shelf.cc", | 180 "common/shelf/wm_shelf.cc", |
181 "common/shelf/wm_shelf.h", | 181 "common/shelf/wm_shelf.h", |
182 "common/shelf/wm_shelf_observer.h", | 182 "common/shelf/wm_shelf_observer.h", |
183 "common/shelf/wm_shelf_util.cc", | 183 "common/shelf/wm_shelf_util.cc", |
184 "common/shelf/wm_shelf_util.h", | 184 "common/shelf/wm_shelf_util.h", |
185 "common/shell_delegate.h", | 185 "common/shell_delegate.h", |
186 "common/shell_window_ids.cc", | |
187 "common/shell_window_ids.h", | |
188 "common/system/accessibility_observer.h", | 186 "common/system/accessibility_observer.h", |
189 "common/system/audio/audio_observer.h", | 187 "common/system/audio/audio_observer.h", |
190 "common/system/audio/tray_audio.cc", | 188 "common/system/audio/tray_audio.cc", |
191 "common/system/audio/tray_audio.h", | 189 "common/system/audio/tray_audio.h", |
192 "common/system/audio/tray_audio_delegate.h", | 190 "common/system/audio/tray_audio_delegate.h", |
193 "common/system/audio/volume_view.cc", | 191 "common/system/audio/volume_view.cc", |
194 "common/system/audio/volume_view.h", | 192 "common/system/audio/volume_view.h", |
195 "common/system/brightness_control_delegate.h", | 193 "common/system/brightness_control_delegate.h", |
196 "common/system/cast/tray_cast.cc", | 194 "common/system/cast/tray_cast.cc", |
197 "common/system/cast/tray_cast.h", | 195 "common/system/cast/tray_cast.h", |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
822 "wm/workspace/workspace_event_handler_aura.h", | 820 "wm/workspace/workspace_event_handler_aura.h", |
823 ] | 821 ] |
824 | 822 |
825 configs += [ "//build/config:precompiled_headers" ] | 823 configs += [ "//build/config:precompiled_headers" ] |
826 defines = [ "ASH_IMPLEMENTATION" ] | 824 defines = [ "ASH_IMPLEMENTATION" ] |
827 | 825 |
828 public_deps = [ | 826 public_deps = [ |
829 "//ash/common/strings", | 827 "//ash/common/strings", |
830 "//ash/resources", | 828 "//ash/resources", |
831 "//ash/resources/vector_icons", | 829 "//ash/resources/vector_icons", |
832 "//ash/shared:app_types", | 830 "//ash/shared", |
833 ] | 831 ] |
834 deps = [ | 832 deps = [ |
835 "//ash/autoclick/common:autoclick", | 833 "//ash/autoclick/common:autoclick", |
836 "//ash/public/cpp", | 834 "//ash/public/cpp", |
837 "//ash/public/interfaces", | 835 "//ash/public/interfaces", |
838 "//ash/touch_hud", | 836 "//ash/touch_hud", |
839 "//base", | 837 "//base", |
840 "//base:i18n", | 838 "//base:i18n", |
841 "//base/third_party/dynamic_annotations", | 839 "//base/third_party/dynamic_annotations", |
842 "//cc", | 840 "//cc", |
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1475 if (is_win) { | 1473 if (is_win) { |
1476 configs -= [ "//build/config/win:console" ] | 1474 configs -= [ "//build/config/win:console" ] |
1477 configs += [ "//build/config/win:windowed" ] | 1475 configs += [ "//build/config/win:windowed" ] |
1478 deps += [ "//sandbox" ] | 1476 deps += [ "//sandbox" ] |
1479 } | 1477 } |
1480 | 1478 |
1481 if (is_chromeos) { | 1479 if (is_chromeos) { |
1482 deps += [ "//device/bluetooth" ] | 1480 deps += [ "//device/bluetooth" ] |
1483 } | 1481 } |
1484 } | 1482 } |
OLD | NEW |