| 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 28 matching lines...) Expand all Loading... |
| 39 "//net", | 39 "//net", |
| 40 "//skia", | 40 "//skia", |
| 41 "//third_party/icu", | 41 "//third_party/icu", |
| 42 "//ui/accessibility", | 42 "//ui/accessibility", |
| 43 "//ui/app_list/presenter", | 43 "//ui/app_list/presenter", |
| 44 "//ui/aura", | 44 "//ui/aura", |
| 45 "//ui/base", | 45 "//ui/base", |
| 46 "//ui/base:ui_data_pack", | 46 "//ui/base:ui_data_pack", |
| 47 "//ui/base/ime", | 47 "//ui/base/ime", |
| 48 "//ui/compositor", | 48 "//ui/compositor", |
| 49 "//ui/display", |
| 49 "//ui/display/types", | 50 "//ui/display/types", |
| 50 "//ui/events", | 51 "//ui/events", |
| 51 "//ui/events:events_base", | 52 "//ui/events:events_base", |
| 52 "//ui/events:gesture_detection", | 53 "//ui/events:gesture_detection", |
| 53 "//ui/events/devices", | 54 "//ui/events/devices", |
| 54 "//ui/gfx", | 55 "//ui/gfx", |
| 55 "//ui/gfx/geometry", | 56 "//ui/gfx/geometry", |
| 56 "//ui/keyboard", | 57 "//ui/keyboard", |
| 57 "//ui/message_center", | 58 "//ui/message_center", |
| 58 "//ui/native_theme", | 59 "//ui/native_theme", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "//chromeos:power_manager_proto", | 109 "//chromeos:power_manager_proto", |
| 109 "//components/quirks", | 110 "//components/quirks", |
| 110 "//device/bluetooth", | 111 "//device/bluetooth", |
| 111 | 112 |
| 112 # 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. |
| 113 "//third_party/WebKit/public:blink_headers", | 114 "//third_party/WebKit/public:blink_headers", |
| 114 "//third_party/qcms", | 115 "//third_party/qcms", |
| 115 "//ui/chromeos:ui_chromeos", | 116 "//ui/chromeos:ui_chromeos", |
| 116 "//ui/chromeos/resources", | 117 "//ui/chromeos/resources", |
| 117 "//ui/chromeos/strings", | 118 "//ui/chromeos/strings", |
| 118 "//ui/display", | |
| 119 "//ui/display/util", | 119 "//ui/display/util", |
| 120 ] | 120 ] |
| 121 } else { | 121 } else { |
| 122 sources -= [ | 122 sources -= [ |
| 123 "accelerators/key_hold_detector.cc", | 123 "accelerators/key_hold_detector.cc", |
| 124 "accelerators/key_hold_detector.h", | 124 "accelerators/key_hold_detector.h", |
| 125 "accelerators/magnifier_key_scroller.cc", | 125 "accelerators/magnifier_key_scroller.cc", |
| 126 "accelerators/magnifier_key_scroller.h", | 126 "accelerators/magnifier_key_scroller.h", |
| 127 "accelerators/spoken_feedback_toggler.cc", | 127 "accelerators/spoken_feedback_toggler.cc", |
| 128 "accelerators/spoken_feedback_toggler.h", | 128 "accelerators/spoken_feedback_toggler.h", |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 configs += [ "//build/config/win:windowed" ] | 479 configs += [ "//build/config/win:windowed" ] |
| 480 deps += [ "//sandbox" ] | 480 deps += [ "//sandbox" ] |
| 481 } | 481 } |
| 482 | 482 |
| 483 if (is_chromeos) { | 483 if (is_chromeos) { |
| 484 deps += [ "//device/bluetooth" ] | 484 deps += [ "//device/bluetooth" ] |
| 485 } | 485 } |
| 486 } | 486 } |
| 487 # 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 |
| 488 # in the ash_unittests_run target in ash.gyp. | 488 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |