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) |
11 assert(enable_hidpi) | 11 assert(enable_hidpi) |
12 | 12 |
13 gypi_values = exec_script("//build/gypi_to_gn.py", | 13 gypi_values = exec_script("//build/gypi_to_gn.py", |
14 [ rebase_path("ash.gyp") ], | 14 [ rebase_path("ash.gyp") ], |
15 "scope", | 15 "scope", |
16 [ "ash.gyp" ]) | 16 [ "ash.gyp" ]) |
17 | 17 |
18 component("ash") { | 18 component("ash") { |
19 sources = gypi_values.ash_sources | 19 sources = gypi_values.ash_sources |
20 | 20 |
21 configs += [ "//build/config:precompiled_headers" ] | 21 configs += [ "//build/config:precompiled_headers" ] |
22 defines = [ "ASH_IMPLEMENTATION" ] | 22 defines = [ "ASH_IMPLEMENTATION" ] |
23 | 23 |
24 public_deps = [ | 24 public_deps = [ |
25 "//ash/resources", | 25 "//ash/resources", |
26 "//ash/strings", | 26 "//ash/strings", |
27 "//ash/wm/common:ash_wm_common", | |
28 "//ash/wm/common/resources", | 27 "//ash/wm/common/resources", |
29 ] | 28 ] |
30 deps = [ | 29 deps = [ |
31 "//base", | 30 "//base", |
32 "//base:i18n", | 31 "//base:i18n", |
33 "//base/third_party/dynamic_annotations", | 32 "//base/third_party/dynamic_annotations", |
34 "//cc", | 33 "//cc", |
35 "//components/device_event_log", | 34 "//components/device_event_log", |
36 "//components/onc", | 35 "//components/onc", |
37 "//components/signin/core/account_id", | 36 "//components/signin/core/account_id", |
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 configs += [ "//build/config/win:windowed" ] | 482 configs += [ "//build/config/win:windowed" ] |
484 deps += [ "//sandbox" ] | 483 deps += [ "//sandbox" ] |
485 } | 484 } |
486 | 485 |
487 if (is_chromeos) { | 486 if (is_chromeos) { |
488 deps += [ "//device/bluetooth" ] | 487 deps += [ "//device/bluetooth" ] |
489 } | 488 } |
490 } | 489 } |
491 # When adding support for isolates, please have a look at run-time dependencies | 490 # When adding support for isolates, please have a look at run-time dependencies |
492 # in the ash_unittests_run target in ash.gyp. | 491 # in the ash_unittests_run target in ash.gyp. |
OLD | NEW |