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 | 8 |
9 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
10 [ rebase_path("ash.gyp") ], | 10 [ rebase_path("ash.gyp") ], |
11 "scope", | 11 "scope", |
12 [ "ash.gyp" ]) | 12 [ "ash.gyp" ]) |
13 | 13 |
14 component("ash") { | 14 component("ash") { |
15 sources = gypi_values.ash_sources | 15 sources = gypi_values.ash_sources |
16 | 16 |
17 configs += [ "//build/config:precompiled_headers" ] | 17 configs += [ "//build/config:precompiled_headers" ] |
18 defines = [ "ASH_IMPLEMENTATION" ] | 18 defines = [ "ASH_IMPLEMENTATION" ] |
19 | 19 |
20 public_deps = [ | 20 public_deps = [ |
21 "//ash/resources", | 21 "//ash/resources", |
22 "//ash/strings", | 22 "//ash/strings", |
23 ] | 23 ] |
24 deps = [ | 24 deps = [ |
25 "//base", | 25 "//base", |
26 "//base:i18n", | 26 "//base:i18n", |
27 "//base/third_party/dynamic_annotations", | 27 "//base/third_party/dynamic_annotations", |
28 "//cc", | 28 "//cc", |
29 "//components/device_event_log", | 29 "//components/device_event_log", |
| 30 "//components/signin/core/account_id", |
30 "//components/user_manager", | 31 "//components/user_manager", |
31 "//components/wallpaper", | 32 "//components/wallpaper", |
32 "//content/public/browser", | 33 "//content/public/browser", |
33 "//media", | 34 "//media", |
34 "//net", | 35 "//net", |
35 "//skia", | 36 "//skia", |
36 "//third_party/icu", | 37 "//third_party/icu", |
37 "//ui/accessibility", | 38 "//ui/accessibility", |
38 "//ui/app_list", | 39 "//ui/app_list", |
39 "//ui/aura", | 40 "//ui/aura", |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 configs += [ "//build/config/win:windowed" ] | 401 configs += [ "//build/config/win:windowed" ] |
401 deps += [ "//sandbox" ] | 402 deps += [ "//sandbox" ] |
402 } | 403 } |
403 | 404 |
404 if (is_chromeos) { | 405 if (is_chromeos) { |
405 deps += [ "//device/bluetooth" ] | 406 deps += [ "//device/bluetooth" ] |
406 } | 407 } |
407 } | 408 } |
408 # When adding support for isolates, please have a look at run-time dependencies | 409 # When adding support for isolates, please have a look at run-time dependencies |
409 # in the ash_unittests_run target in ash.gyp. | 410 # in the ash_unittests_run target in ash.gyp. |
OLD | NEW |