| 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 # Historical note: Ash shipped on Windows for a couple years to support |
| 11 # Windows 8 Metro mode. Windows support was removed in 2016. |
| 12 assert(is_chromeos) |
| 10 assert(use_aura) | 13 assert(use_aura) |
| 11 assert(enable_hidpi) | 14 assert(enable_hidpi) |
| 12 | 15 |
| 13 component("ash") { | 16 component("ash") { |
| 14 sources = [ | 17 sources = [ |
| 15 "accelerators/accelerator_commands_aura.cc", | 18 "accelerators/accelerator_commands_aura.cc", |
| 16 "accelerators/accelerator_commands_aura.h", | 19 "accelerators/accelerator_commands_aura.h", |
| 17 "accelerators/accelerator_controller_delegate_aura.cc", | 20 "accelerators/accelerator_controller_delegate_aura.cc", |
| 18 "accelerators/accelerator_controller_delegate_aura.h", | 21 "accelerators/accelerator_controller_delegate_aura.h", |
| 19 "accelerators/accelerator_delegate.cc", | 22 "accelerators/accelerator_delegate.cc", |
| (...skipping 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1506 if (is_win) { | 1509 if (is_win) { |
| 1507 configs -= [ "//build/config/win:console" ] | 1510 configs -= [ "//build/config/win:console" ] |
| 1508 configs += [ "//build/config/win:windowed" ] | 1511 configs += [ "//build/config/win:windowed" ] |
| 1509 deps += [ "//sandbox" ] | 1512 deps += [ "//sandbox" ] |
| 1510 } | 1513 } |
| 1511 | 1514 |
| 1512 if (is_chromeos) { | 1515 if (is_chromeos) { |
| 1513 deps += [ "//device/bluetooth" ] | 1516 deps += [ "//device/bluetooth" ] |
| 1514 } | 1517 } |
| 1515 } | 1518 } |
| OLD | NEW |