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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 if (is_chromeos) { | 108 if (is_chromeos) { |
109 deps += [ | 109 deps += [ |
110 "//chromeos", | 110 "//chromeos", |
111 "//chromeos:power_manager_proto", | 111 "//chromeos:power_manager_proto", |
112 "//components/quirks", | 112 "//components/quirks", |
113 "//device/bluetooth", | 113 "//device/bluetooth", |
114 | 114 |
115 # TODO(msw): Remove this; only ash_with_content should depend on webkit. | 115 # TODO(msw): Remove this; only ash_with_content should depend on webkit. |
116 "//third_party/WebKit/public:blink_headers", | 116 "//third_party/WebKit/public:blink_headers", |
117 "//third_party/qcms", | 117 "//third_party/qcms", |
118 "//ui/chromeos:ui_chromeos", | 118 "//ui/chromeos", |
119 "//ui/chromeos/resources", | 119 "//ui/chromeos/resources", |
120 "//ui/chromeos/strings", | 120 "//ui/chromeos/strings", |
121 "//ui/display/util", | 121 "//ui/display/util", |
122 ] | 122 ] |
123 | 123 |
124 data = [ | 124 data = [ |
125 "display/test_data/", | 125 "display/test_data/", |
126 ] | 126 ] |
127 } else { | 127 } else { |
128 sources -= [ | 128 sources -= [ |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 } | 431 } |
432 if (is_chromeos) { | 432 if (is_chromeos) { |
433 sources += [ "first_run/first_run_helper_unittest.cc" ] | 433 sources += [ "first_run/first_run_helper_unittest.cc" ] |
434 deps += [ | 434 deps += [ |
435 "//chromeos", | 435 "//chromeos", |
436 "//chromeos:power_manager_proto", | 436 "//chromeos:power_manager_proto", |
437 "//chromeos:test_support_without_gmock", | 437 "//chromeos:test_support_without_gmock", |
438 "//components/quirks", | 438 "//components/quirks", |
439 "//device/bluetooth", | 439 "//device/bluetooth", |
440 "//net:net", | 440 "//net:net", |
441 "//ui/chromeos:ui_chromeos", | 441 "//ui/chromeos", |
442 "//ui/display", | 442 "//ui/display", |
443 "//ui/display:test_support", | 443 "//ui/display:test_support", |
444 "//ui/display:test_util", | 444 "//ui/display:test_util", |
445 ] | 445 ] |
446 } else { | 446 } else { |
447 sources -= [ | 447 sources -= [ |
448 "accelerators/magnifier_key_scroller_unittest.cc", | 448 "accelerators/magnifier_key_scroller_unittest.cc", |
449 "accelerators/spoken_feedback_toggler_unittest.cc", | 449 "accelerators/spoken_feedback_toggler_unittest.cc", |
450 "display/resolution_notification_controller_unittest.cc", | 450 "display/resolution_notification_controller_unittest.cc", |
451 "touch/touchscreen_util_unittest.cc", | 451 "touch/touchscreen_util_unittest.cc", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 configs += [ "//build/config/win:windowed" ] | 488 configs += [ "//build/config/win:windowed" ] |
489 deps += [ "//sandbox" ] | 489 deps += [ "//sandbox" ] |
490 } | 490 } |
491 | 491 |
492 if (is_chromeos) { | 492 if (is_chromeos) { |
493 deps += [ "//device/bluetooth" ] | 493 deps += [ "//device/bluetooth" ] |
494 } | 494 } |
495 } | 495 } |
496 # When adding support for isolates, please have a look at run-time dependencies | 496 # When adding support for isolates, please have a look at run-time dependencies |
497 # in the ash_unittests_run target in ash.gyp. | 497 # in the ash_unittests_run target in ash.gyp. |
OLD | NEW |