| 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 defines = [ "ASH_IMPLEMENTATION" ] | 17 defines = [ "ASH_IMPLEMENTATION" ] |
| 18 | 18 |
| 19 public_deps = [ | 19 public_deps = [ |
| 20 "//ash/resources", | 20 "//ash/resources", |
| 21 "//ash/strings", | 21 "//ash/strings", |
| 22 ] | 22 ] |
| 23 deps = [ | 23 deps = [ |
| 24 "//base", | 24 "//base", |
| 25 "//base:i18n", | 25 "//base:i18n", |
| 26 "//base/third_party/dynamic_annotations", | 26 "//base/third_party/dynamic_annotations", |
| 27 "//cc", | 27 "//cc", |
| 28 "//components/device_event_log", |
| 28 "//components/user_manager", | 29 "//components/user_manager", |
| 29 "//components/wallpaper", | 30 "//components/wallpaper", |
| 30 "//content/public/browser", | 31 "//content/public/browser", |
| 31 "//media", | 32 "//media", |
| 32 "//net", | 33 "//net", |
| 33 "//skia", | 34 "//skia", |
| 34 "//third_party/icu", | 35 "//third_party/icu", |
| 35 "//ui/accessibility", | 36 "//ui/accessibility", |
| 36 "//ui/app_list", | 37 "//ui/app_list", |
| 37 "//ui/aura", | 38 "//ui/aura", |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 "//skia", | 392 "//skia", |
| 392 "//testing/gtest", | 393 "//testing/gtest", |
| 393 "//ui/accessibility", | 394 "//ui/accessibility", |
| 394 ] | 395 ] |
| 395 | 396 |
| 396 if (is_chromeos) { | 397 if (is_chromeos) { |
| 397 deps += [ "//ui/display" ] | 398 deps += [ "//ui/display" ] |
| 398 } | 399 } |
| 399 } | 400 } |
| 400 } | 401 } |
| OLD | NEW |