| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 2299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2310 deps += [ | 2310 deps += [ |
| 2311 "//content/public/common", | 2311 "//content/public/common", |
| 2312 "//services/ui/public/cpp", | 2312 "//services/ui/public/cpp", |
| 2313 "//services/ui/public/cpp/input_devices", | 2313 "//services/ui/public/cpp/input_devices", |
| 2314 "//ui/aura", | 2314 "//ui/aura", |
| 2315 "//ui/compositor", | 2315 "//ui/compositor", |
| 2316 "//ui/snapshot", | 2316 "//ui/snapshot", |
| 2317 "//ui/views/mus", | 2317 "//ui/views/mus", |
| 2318 ] | 2318 ] |
| 2319 } | 2319 } |
| 2320 if (ui_compositor_image_transport) { | |
| 2321 deps += [ "//ui/gl" ] | |
| 2322 } | |
| 2323 | 2320 |
| 2324 if (use_ash) { | 2321 if (use_ash) { |
| 2325 # Cross-platform Ash sources. | 2322 # Cross-platform Ash sources. |
| 2326 sources += [ | 2323 sources += [ |
| 2327 "media/webrtc/desktop_media_list_ash.cc", | 2324 "media/webrtc/desktop_media_list_ash.cc", |
| 2328 "media/webrtc/desktop_media_list_ash.h", | 2325 "media/webrtc/desktop_media_list_ash.h", |
| 2329 "renderer_context_menu/open_with_menu_factory_ash.cc", | 2326 "renderer_context_menu/open_with_menu_factory_ash.cc", |
| 2330 "renderer_context_menu/open_with_menu_factory_ash.h", | 2327 "renderer_context_menu/open_with_menu_factory_ash.h", |
| 2331 "signin/signin_error_notifier_ash.cc", | 2328 "signin/signin_error_notifier_ash.cc", |
| 2332 "signin/signin_error_notifier_ash.h", | 2329 "signin/signin_error_notifier_ash.h", |
| (...skipping 2221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4554 "media/pepper_cdm_test_constants.cc", | 4551 "media/pepper_cdm_test_constants.cc", |
| 4555 "media/pepper_cdm_test_constants.h", | 4552 "media/pepper_cdm_test_constants.h", |
| 4556 ] | 4553 ] |
| 4557 } | 4554 } |
| 4558 } | 4555 } |
| 4559 | 4556 |
| 4560 service_manifest("preferences_manifest") { | 4557 service_manifest("preferences_manifest") { |
| 4561 name = "preferences" | 4558 name = "preferences" |
| 4562 source = "prefs/preferences_manifest.json" | 4559 source = "prefs/preferences_manifest.json" |
| 4563 } | 4560 } |
| OLD | NEW |