| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 "common/shelf/wm_shelf.cc", | 184 "common/shelf/wm_shelf.cc", |
| 185 "common/shelf/wm_shelf.h", | 185 "common/shelf/wm_shelf.h", |
| 186 "common/shelf/wm_shelf_observer.h", | 186 "common/shelf/wm_shelf_observer.h", |
| 187 "common/shelf/wm_shelf_util.cc", | 187 "common/shelf/wm_shelf_util.cc", |
| 188 "common/shelf/wm_shelf_util.h", | 188 "common/shelf/wm_shelf_util.h", |
| 189 "common/shell_delegate.h", | 189 "common/shell_delegate.h", |
| 190 "common/system/accessibility_observer.h", | 190 "common/system/accessibility_observer.h", |
| 191 "common/system/brightness_control_delegate.h", | 191 "common/system/brightness_control_delegate.h", |
| 192 "common/system/chromeos/audio/audio_detailed_view.cc", | 192 "common/system/chromeos/audio/audio_detailed_view.cc", |
| 193 "common/system/chromeos/audio/audio_detailed_view.h", | 193 "common/system/chromeos/audio/audio_detailed_view.h", |
| 194 "common/system/chromeos/audio/audio_observer.h", | |
| 195 "common/system/chromeos/audio/tray_audio.cc", | 194 "common/system/chromeos/audio/tray_audio.cc", |
| 196 "common/system/chromeos/audio/tray_audio.h", | 195 "common/system/chromeos/audio/tray_audio.h", |
| 197 "common/system/chromeos/audio/tray_audio_delegate.h", | 196 "common/system/chromeos/audio/tray_audio_delegate.h", |
| 198 "common/system/chromeos/audio/tray_audio_delegate_chromeos.cc", | 197 "common/system/chromeos/audio/tray_audio_delegate_chromeos.cc", |
| 199 "common/system/chromeos/audio/tray_audio_delegate_chromeos.h", | 198 "common/system/chromeos/audio/tray_audio_delegate_chromeos.h", |
| 200 "common/system/chromeos/audio/volume_view.cc", | 199 "common/system/chromeos/audio/volume_view.cc", |
| 201 "common/system/chromeos/audio/volume_view.h", | 200 "common/system/chromeos/audio/volume_view.h", |
| 202 "common/system/chromeos/bluetooth/bluetooth_notification_controller.cc", | 201 "common/system/chromeos/bluetooth/bluetooth_notification_controller.cc", |
| 203 "common/system/chromeos/bluetooth/bluetooth_notification_controller.h", | 202 "common/system/chromeos/bluetooth/bluetooth_notification_controller.h", |
| 204 "common/system/chromeos/bluetooth/bluetooth_observer.h", | 203 "common/system/chromeos/bluetooth/bluetooth_observer.h", |
| (...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1491 if (is_win) { | 1490 if (is_win) { |
| 1492 configs -= [ "//build/config/win:console" ] | 1491 configs -= [ "//build/config/win:console" ] |
| 1493 configs += [ "//build/config/win:windowed" ] | 1492 configs += [ "//build/config/win:windowed" ] |
| 1494 deps += [ "//sandbox" ] | 1493 deps += [ "//sandbox" ] |
| 1495 } | 1494 } |
| 1496 | 1495 |
| 1497 if (is_chromeos) { | 1496 if (is_chromeos) { |
| 1498 deps += [ "//device/bluetooth" ] | 1497 deps += [ "//device/bluetooth" ] |
| 1499 } | 1498 } |
| 1500 } | 1499 } |
| OLD | NEW |