| 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 | 8 |
| 9 assert(use_ash) | 9 assert(use_ash) |
| 10 | 10 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 deps += [ | 92 deps += [ |
| 93 "//ui/events/ozone:events_ozone", | 93 "//ui/events/ozone:events_ozone", |
| 94 "//ui/ozone", | 94 "//ui/ozone", |
| 95 ] | 95 ] |
| 96 } | 96 } |
| 97 | 97 |
| 98 if (is_chromeos) { | 98 if (is_chromeos) { |
| 99 deps += [ | 99 deps += [ |
| 100 "//chromeos", | 100 "//chromeos", |
| 101 "//chromeos:power_manager_proto", | 101 "//chromeos:power_manager_proto", |
| 102 "//components/quirks_client", |
| 102 "//device/bluetooth", | 103 "//device/bluetooth", |
| 103 "//third_party/qcms", | 104 "//third_party/qcms", |
| 104 "//ui/chromeos:ui_chromeos", | 105 "//ui/chromeos:ui_chromeos", |
| 105 "//ui/chromeos/resources", | 106 "//ui/chromeos/resources", |
| 106 "//ui/chromeos/strings", | 107 "//ui/chromeos/strings", |
| 107 "//ui/display", | 108 "//ui/display", |
| 108 "//ui/display/util", | 109 "//ui/display/util", |
| 109 ] | 110 ] |
| 110 } else { | 111 } else { |
| 111 sources -= [ | 112 sources -= [ |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 configs += [ "//build/config/win:windowed" ] | 401 configs += [ "//build/config/win:windowed" ] |
| 401 deps += [ "//sandbox" ] | 402 deps += [ "//sandbox" ] |
| 402 } | 403 } |
| 403 | 404 |
| 404 if (is_chromeos) { | 405 if (is_chromeos) { |
| 405 deps += [ "//device/bluetooth" ] | 406 deps += [ "//device/bluetooth" ] |
| 406 } | 407 } |
| 407 } | 408 } |
| 408 # When adding support for isolates, please have a look at run-time dependencies | 409 # When adding support for isolates, please have a look at run-time dependencies |
| 409 # in the ash_unittests_run target in ash.gyp. | 410 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |