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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 "//ui/events:dom_keycode_converter", | 98 "//ui/events:dom_keycode_converter", |
99 "//ui/events/ozone:events_ozone", | 99 "//ui/events/ozone:events_ozone", |
100 "//ui/ozone", | 100 "//ui/ozone", |
101 ] | 101 ] |
102 } | 102 } |
103 | 103 |
104 if (is_chromeos) { | 104 if (is_chromeos) { |
105 deps += [ | 105 deps += [ |
106 "//chromeos", | 106 "//chromeos", |
107 "//chromeos:power_manager_proto", | 107 "//chromeos:power_manager_proto", |
| 108 "//components/quirks", |
108 "//device/bluetooth", | 109 "//device/bluetooth", |
109 | 110 |
110 # TODO(msw): Remove this; only ash_with_content should depend on webkit. | 111 # TODO(msw): Remove this; only ash_with_content should depend on webkit. |
111 "//third_party/WebKit/public:blink_headers", | 112 "//third_party/WebKit/public:blink_headers", |
112 "//third_party/qcms", | 113 "//third_party/qcms", |
113 "//ui/chromeos:ui_chromeos", | 114 "//ui/chromeos:ui_chromeos", |
114 "//ui/chromeos/resources", | 115 "//ui/chromeos/resources", |
115 "//ui/chromeos/strings", | 116 "//ui/chromeos/strings", |
116 "//ui/display", | 117 "//ui/display", |
117 "//ui/display/util", | 118 "//ui/display/util", |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 | 419 |
419 if (!use_x11) { | 420 if (!use_x11) { |
420 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ] | 421 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ] |
421 } | 422 } |
422 if (is_chromeos) { | 423 if (is_chromeos) { |
423 sources += [ "first_run/first_run_helper_unittest.cc" ] | 424 sources += [ "first_run/first_run_helper_unittest.cc" ] |
424 deps += [ | 425 deps += [ |
425 "//chromeos", | 426 "//chromeos", |
426 "//chromeos:power_manager_proto", | 427 "//chromeos:power_manager_proto", |
427 "//chromeos:test_support_without_gmock", | 428 "//chromeos:test_support_without_gmock", |
| 429 "//components/quirks", |
428 "//device/bluetooth", | 430 "//device/bluetooth", |
| 431 "//net:net", |
429 "//ui/chromeos:ui_chromeos", | 432 "//ui/chromeos:ui_chromeos", |
430 "//ui/display", | 433 "//ui/display", |
431 "//ui/display:test_support", | 434 "//ui/display:test_support", |
432 "//ui/display:test_util", | 435 "//ui/display:test_util", |
433 ] | 436 ] |
434 } else { | 437 } else { |
435 sources -= [ | 438 sources -= [ |
436 "accelerators/magnifier_key_scroller_unittest.cc", | 439 "accelerators/magnifier_key_scroller_unittest.cc", |
437 "accelerators/spoken_feedback_toggler_unittest.cc", | 440 "accelerators/spoken_feedback_toggler_unittest.cc", |
438 "display/resolution_notification_controller_unittest.cc", | 441 "display/resolution_notification_controller_unittest.cc", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 configs += [ "//build/config/win:windowed" ] | 478 configs += [ "//build/config/win:windowed" ] |
476 deps += [ "//sandbox" ] | 479 deps += [ "//sandbox" ] |
477 } | 480 } |
478 | 481 |
479 if (is_chromeos) { | 482 if (is_chromeos) { |
480 deps += [ "//device/bluetooth" ] | 483 deps += [ "//device/bluetooth" ] |
481 } | 484 } |
482 } | 485 } |
483 # When adding support for isolates, please have a look at run-time dependencies | 486 # When adding support for isolates, please have a look at run-time dependencies |
484 # in the ash_unittests_run target in ash.gyp. | 487 # in the ash_unittests_run target in ash.gyp. |
OLD | NEW |