Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: content/browser/BUILD.gn

Issue 1643633003: Link Blink into the browser process less. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/webcrypto/BUILD.gn ('k') | content/child/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//content/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 "//device/bluetooth", 128 "//device/bluetooth",
129 "//gin", 129 "//gin",
130 "//mojo/common:url_type_converters", 130 "//mojo/common:url_type_converters",
131 "//mojo/converters/geometry", 131 "//mojo/converters/geometry",
132 "//mojo/public/cpp/bindings", 132 "//mojo/public/cpp/bindings",
133 "//mojo/public/js", 133 "//mojo/public/js",
134 "//mojo/shell/public/interfaces", 134 "//mojo/shell/public/interfaces",
135 "//skia/public", 135 "//skia/public",
136 "//storage/browser", 136 "//storage/browser",
137 "//storage/common", 137 "//storage/common",
138
139 # TODO(brettw) bug 582206: Blink should not be used in the browser
140 # process. This is required by devtools' input_handler.cc which calls
141 # WebKeyboardEvent::setKeyIdentifierFromWindowsKeyCode
142 "//third_party/WebKit/public:blink",
138 "//third_party/WebKit/public:image_resources", 143 "//third_party/WebKit/public:image_resources",
139 "//third_party/WebKit/public:resources", 144 "//third_party/WebKit/public:resources",
140 "//third_party/angle:commit_id", 145 "//third_party/angle:commit_id",
141 "//third_party/icu", 146 "//third_party/icu",
142 "//third_party/leveldatabase", 147 "//third_party/leveldatabase",
143 "//third_party/libyuv", 148 "//third_party/libyuv",
144 "//ui/events/blink", 149 "//ui/events/blink",
145 "//ui/resources", 150 "//ui/resources",
146 "//ui/surface", 151 "//ui/surface",
147 "//ui/touch_selection", 152 "//ui/touch_selection",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 ] 200 ]
196 } 201 }
197 202
198 if (enable_webrtc) { 203 if (enable_webrtc) {
199 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, 204 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources,
200 ".", 205 ".",
201 "//content") 206 "//content")
202 deps += [ 207 deps += [
203 "//jingle:jingle_glue", 208 "//jingle:jingle_glue",
204 "//third_party/libjingle:libjingle_webrtc", 209 "//third_party/libjingle:libjingle_webrtc",
210 "//third_party/libjingle:libpeerconnection",
205 ] 211 ]
206 if (is_linux || is_mac || is_win) { 212 if (is_linux || is_mac || is_win) {
207 sources += [ 213 sources += [
208 "media/capture/desktop_capture_device.cc", 214 "media/capture/desktop_capture_device.cc",
209 "media/capture/desktop_capture_device.h", 215 "media/capture/desktop_capture_device.h",
210 "media/capture/desktop_capture_device_uma_types.cc", 216 "media/capture/desktop_capture_device_uma_types.cc",
211 "media/capture/desktop_capture_device_uma_types.h", 217 "media/capture/desktop_capture_device_uma_types.h",
212 ] 218 ]
213 if (use_aura) { 219 if (use_aura) {
214 sources += [ 220 sources += [
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 549
544 if (enable_webvr && is_android) { 550 if (enable_webvr && is_android) {
545 sources += [ 551 sources += [
546 "vr/android/cardboard/cardboard_vr_device.cc", 552 "vr/android/cardboard/cardboard_vr_device.cc",
547 "vr/android/cardboard/cardboard_vr_device.h", 553 "vr/android/cardboard/cardboard_vr_device.h",
548 "vr/android/cardboard/cardboard_vr_device_provider.cc", 554 "vr/android/cardboard/cardboard_vr_device_provider.cc",
549 "vr/android/cardboard/cardboard_vr_device_provider.h", 555 "vr/android/cardboard/cardboard_vr_device_provider.h",
550 ] 556 ]
551 } 557 }
552 } 558 }
OLDNEW
« no previous file with comments | « components/webcrypto/BUILD.gn ('k') | content/child/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698