| 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "//base:i18n", | 319 "//base:i18n", |
| 320 "//chrome:packed_resources", | 320 "//chrome:packed_resources", |
| 321 "//content", | 321 "//content", |
| 322 "//content/shell:content_shell_lib", | 322 "//content/shell:content_shell_lib", |
| 323 "//device/bluetooth", | 323 "//device/bluetooth", |
| 324 "//net", | 324 "//net", |
| 325 "//skia", | 325 "//skia", |
| 326 "//ui/aura", | 326 "//ui/aura", |
| 327 "//ui/base", | 327 "//ui/base", |
| 328 "//ui/compositor", | 328 "//ui/compositor", |
| 329 "//ui/display", |
| 329 "//ui/events/devices", | 330 "//ui/events/devices", |
| 330 "//ui/message_center", | 331 "//ui/message_center", |
| 331 "//ui/views:test_support", | 332 "//ui/views:test_support", |
| 332 "//ui/wm", | 333 "//ui/wm", |
| 333 ] | 334 ] |
| 334 | 335 |
| 335 if (is_chromeos) { | 336 if (is_chromeos) { |
| 336 deps += [ "//chromeos" ] | 337 deps += [ "//chromeos" ] |
| 337 } | 338 } |
| 338 } | 339 } |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 configs += [ "//build/config/win:windowed" ] | 479 configs += [ "//build/config/win:windowed" ] |
| 479 deps += [ "//sandbox" ] | 480 deps += [ "//sandbox" ] |
| 480 } | 481 } |
| 481 | 482 |
| 482 if (is_chromeos) { | 483 if (is_chromeos) { |
| 483 deps += [ "//device/bluetooth" ] | 484 deps += [ "//device/bluetooth" ] |
| 484 } | 485 } |
| 485 } | 486 } |
| 486 # When adding support for isolates, please have a look at run-time dependencies | 487 # When adding support for isolates, please have a look at run-time dependencies |
| 487 # in the ash_unittests_run target in ash.gyp. | 488 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |