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

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

Issue 2979563002: Use same DesktopCaptureOptions in DesktopCaptureBase and DesktopCaptureDevice (Closed)
Patch Set: Merge remote-tracking branch 'refs/remotes/branch-heads/3112' into drover_3112 Created 3 years, 5 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 | « content/browser/media/capture/desktop_capture_device.cc ('k') | content/public/browser/DEPS » ('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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 # See //content/BUILD.gn for how this works. 7 # See //content/BUILD.gn for how this works.
8 group("browser") { 8 group("browser") {
9 if (is_component_build) { 9 if (is_component_build) {
10 public_deps = [ 10 public_deps = [
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "cdm_registry.h", 78 "cdm_registry.h",
79 "certificate_request_result_type.h", 79 "certificate_request_result_type.h",
80 "child_process_data.h", 80 "child_process_data.h",
81 "child_process_security_policy.h", 81 "child_process_security_policy.h",
82 "client_certificate_delegate.h", 82 "client_certificate_delegate.h",
83 "color_chooser.h", 83 "color_chooser.h",
84 "content_browser_client.cc", 84 "content_browser_client.cc",
85 "content_browser_client.h", 85 "content_browser_client.h",
86 "context_factory.h", 86 "context_factory.h",
87 "cookie_store_factory.h", 87 "cookie_store_factory.h",
88 "desktop_capture.cc",
89 "desktop_capture.h",
88 "desktop_media_id.cc", 90 "desktop_media_id.cc",
89 "desktop_media_id.h", 91 "desktop_media_id.h",
90 "desktop_notification_delegate.h", 92 "desktop_notification_delegate.h",
91 "devtools_agent_host.h", 93 "devtools_agent_host.h",
92 "devtools_agent_host_client.h", 94 "devtools_agent_host_client.h",
93 "devtools_agent_host_observer.cc", 95 "devtools_agent_host_observer.cc",
94 "devtools_agent_host_observer.h", 96 "devtools_agent_host_observer.h",
95 "devtools_external_agent_proxy.h", 97 "devtools_external_agent_proxy.h",
96 "devtools_external_agent_proxy_delegate.h", 98 "devtools_external_agent_proxy_delegate.h",
97 "devtools_frontend_host.h", 99 "devtools_frontend_host.h",
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 "//device/wake_lock/public/interfaces", 317 "//device/wake_lock/public/interfaces",
316 "//gpu", 318 "//gpu",
317 "//media", 319 "//media",
318 "//net", 320 "//net",
319 "//ppapi/c", 321 "//ppapi/c",
320 "//ui/accessibility", 322 "//ui/accessibility",
321 "//ui/base", 323 "//ui/base",
322 "//ui/events", 324 "//ui/events",
323 "//ui/gl", 325 "//ui/gl",
324 "//ui/surface", 326 "//ui/surface",
327 "//third_party/webrtc/modules/desktop_capture",
325 ] 328 ]
326 329
327 allow_circular_includes_from = [ 330 allow_circular_includes_from = [
328 # This target is a pair with content/browser. They always go together and 331 # This target is a pair with content/browser. They always go together and
329 # include headers from each other. 332 # include headers from each other.
330 "//content/browser", 333 "//content/browser",
331 ] 334 ]
332 335
333 if (is_android) { 336 if (is_android) {
334 deps += [ "//ui/android" ] 337 deps += [ "//ui/android" ]
335 } 338 }
336 339
337 if (use_aura) { 340 if (use_aura) {
338 sources -= [ "context_factory.h" ] 341 sources -= [ "context_factory.h" ]
339 deps += [ "//ui/aura" ] 342 deps += [ "//ui/aura" ]
340 } 343 }
341 344
342 if (!is_android) { 345 if (!is_android) {
343 sources += [ 346 sources += [
344 "devtools_frontend_host.h", 347 "devtools_frontend_host.h",
345 "host_zoom_map.h", 348 "host_zoom_map.h",
346 "zoom_level_delegate.h", 349 "zoom_level_delegate.h",
347 ] 350 ]
348 } 351 }
349 } 352 }
OLDNEW
« no previous file with comments | « content/browser/media/capture/desktop_capture_device.cc ('k') | content/public/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698