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 ] | 27 ] |
28 deps = [ | 28 deps = [ |
| 29 "//ash/touch_hud", |
29 "//base", | 30 "//base", |
30 "//base:i18n", | 31 "//base:i18n", |
31 "//base/third_party/dynamic_annotations", | 32 "//base/third_party/dynamic_annotations", |
32 "//cc", | 33 "//cc", |
33 "//components/device_event_log", | 34 "//components/device_event_log", |
34 "//components/onc", | 35 "//components/onc", |
35 "//components/signin/core/account_id", | 36 "//components/signin/core/account_id", |
36 "//components/user_manager", | 37 "//components/user_manager", |
37 "//components/wallpaper", | 38 "//components/wallpaper", |
38 "//media", | 39 "//media", |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 sources = gypi_values.ash_unittests_sources | 343 sources = gypi_values.ash_unittests_sources |
343 configs += [ "//build/config:precompiled_headers" ] | 344 configs += [ "//build/config:precompiled_headers" ] |
344 | 345 |
345 deps = [ | 346 deps = [ |
346 ":ash", | 347 ":ash", |
347 ":ash_with_content", | 348 ":ash_with_content", |
348 ":test_support", | 349 ":test_support", |
349 ":test_support_with_content", | 350 ":test_support_with_content", |
350 "//ash/resources", | 351 "//ash/resources", |
351 "//ash/strings", | 352 "//ash/strings", |
| 353 "//ash/touch_hud", |
352 "//base", | 354 "//base", |
353 "//base/test:test_support", | 355 "//base/test:test_support", |
354 "//components/signin/core/account_id", | 356 "//components/signin/core/account_id", |
355 "//components/user_manager", | 357 "//components/user_manager", |
356 "//content/public/browser", | 358 "//content/public/browser", |
357 "//content/test:test_support", | 359 "//content/test:test_support", |
358 "//mojo/edk/system", | 360 "//mojo/edk/system", |
359 "//skia", | 361 "//skia", |
360 "//testing/gtest", | 362 "//testing/gtest", |
361 "//third_party/icu", | 363 "//third_party/icu", |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 configs += [ "//build/config/win:windowed" ] | 482 configs += [ "//build/config/win:windowed" ] |
481 deps += [ "//sandbox" ] | 483 deps += [ "//sandbox" ] |
482 } | 484 } |
483 | 485 |
484 if (is_chromeos) { | 486 if (is_chromeos) { |
485 deps += [ "//device/bluetooth" ] | 487 deps += [ "//device/bluetooth" ] |
486 } | 488 } |
487 } | 489 } |
488 # 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 |
489 # in the ash_unittests_run target in ash.gyp. | 491 # in the ash_unittests_run target in ash.gyp. |
OLD | NEW |