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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 "//device/bluetooth", | 111 "//device/bluetooth", |
112 | 112 |
113 # TODO(msw): Remove this; only ash_with_content should depend on webkit. | 113 # TODO(msw): Remove this; only ash_with_content should depend on webkit. |
114 "//third_party/WebKit/public:blink_headers", | 114 "//third_party/WebKit/public:blink_headers", |
115 "//third_party/qcms", | 115 "//third_party/qcms", |
116 "//ui/chromeos:ui_chromeos", | 116 "//ui/chromeos:ui_chromeos", |
117 "//ui/chromeos/resources", | 117 "//ui/chromeos/resources", |
118 "//ui/chromeos/strings", | 118 "//ui/chromeos/strings", |
119 "//ui/display/util", | 119 "//ui/display/util", |
120 ] | 120 ] |
| 121 |
| 122 data = [ |
| 123 "display/test_data/", |
| 124 ] |
121 } else { | 125 } else { |
122 sources -= [ | 126 sources -= [ |
123 "accelerators/key_hold_detector.cc", | 127 "accelerators/key_hold_detector.cc", |
124 "accelerators/key_hold_detector.h", | 128 "accelerators/key_hold_detector.h", |
125 "accelerators/magnifier_key_scroller.cc", | 129 "accelerators/magnifier_key_scroller.cc", |
126 "accelerators/magnifier_key_scroller.h", | 130 "accelerators/magnifier_key_scroller.h", |
127 "accelerators/spoken_feedback_toggler.cc", | 131 "accelerators/spoken_feedback_toggler.cc", |
128 "accelerators/spoken_feedback_toggler.h", | 132 "accelerators/spoken_feedback_toggler.h", |
129 "display/resolution_notification_controller.cc", | 133 "display/resolution_notification_controller.cc", |
130 "display/resolution_notification_controller.h", | 134 "display/resolution_notification_controller.h", |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 configs += [ "//build/config/win:windowed" ] | 482 configs += [ "//build/config/win:windowed" ] |
479 deps += [ "//sandbox" ] | 483 deps += [ "//sandbox" ] |
480 } | 484 } |
481 | 485 |
482 if (is_chromeos) { | 486 if (is_chromeos) { |
483 deps += [ "//device/bluetooth" ] | 487 deps += [ "//device/bluetooth" ] |
484 } | 488 } |
485 } | 489 } |
486 # 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 |
487 # in the ash_unittests_run target in ash.gyp. | 491 # in the ash_unittests_run target in ash.gyp. |
OLD | NEW |