| 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) |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "//base/third_party/dynamic_annotations", | 31 "//base/third_party/dynamic_annotations", |
| 32 "//cc", | 32 "//cc", |
| 33 "//components/device_event_log", | 33 "//components/device_event_log", |
| 34 "//components/onc", | 34 "//components/onc", |
| 35 "//components/signin/core/account_id", | 35 "//components/signin/core/account_id", |
| 36 "//components/user_manager", | 36 "//components/user_manager", |
| 37 "//components/wallpaper", | 37 "//components/wallpaper", |
| 38 "//media", | 38 "//media", |
| 39 "//net", | 39 "//net", |
| 40 "//skia", | 40 "//skia", |
| 41 "//third_party/harfbuzz-ng", |
| 41 "//third_party/icu", | 42 "//third_party/icu", |
| 42 "//ui/accessibility", | 43 "//ui/accessibility", |
| 43 "//ui/app_list", | 44 "//ui/app_list", |
| 44 "//ui/aura", | 45 "//ui/aura", |
| 45 "//ui/base", | 46 "//ui/base", |
| 46 "//ui/base:ui_data_pack", | 47 "//ui/base:ui_data_pack", |
| 47 "//ui/base/ime", | 48 "//ui/base/ime", |
| 48 "//ui/compositor", | 49 "//ui/compositor", |
| 49 "//ui/display/types", | 50 "//ui/display/types", |
| 50 "//ui/events", | 51 "//ui/events", |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 configs += [ "//build/config/win:windowed" ] | 476 configs += [ "//build/config/win:windowed" ] |
| 476 deps += [ "//sandbox" ] | 477 deps += [ "//sandbox" ] |
| 477 } | 478 } |
| 478 | 479 |
| 479 if (is_chromeos) { | 480 if (is_chromeos) { |
| 480 deps += [ "//device/bluetooth" ] | 481 deps += [ "//device/bluetooth" ] |
| 481 } | 482 } |
| 482 } | 483 } |
| 483 # When adding support for isolates, please have a look at run-time dependencies | 484 # When adding support for isolates, please have a look at run-time dependencies |
| 484 # in the ash_unittests_run target in ash.gyp. | 485 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |