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

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

Issue 2214533002: move //media/capture to //device/capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/app/android/library_loader_hooks.cc ('k') | content/browser/browser_main_loop.h » ('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 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "//content/browser/devtools:gen_devtools_protocol_handler", 55 "//content/browser/devtools:gen_devtools_protocol_handler",
56 "//content/browser/devtools:resources", 56 "//content/browser/devtools:resources",
57 "//content/browser/notifications:notification_proto", 57 "//content/browser/notifications:notification_proto",
58 "//content/browser/service_worker:service_worker_proto", 58 "//content/browser/service_worker:service_worker_proto",
59 "//content/browser/speech/proto", 59 "//content/browser/speech/proto",
60 "//content/common", 60 "//content/common",
61 "//content/public/common:common_sources", 61 "//content/public/common:common_sources",
62 "//crypto", 62 "//crypto",
63 "//device/battery", 63 "//device/battery",
64 "//device/bluetooth", 64 "//device/bluetooth",
65 "//device/capture",
65 "//device/gamepad", 66 "//device/gamepad",
66 "//device/geolocation:device_geolocation", 67 "//device/geolocation:device_geolocation",
67 "//device/geolocation/public/interfaces", 68 "//device/geolocation/public/interfaces",
68 "//device/power_save_blocker", 69 "//device/power_save_blocker",
69 "//device/vibration", 70 "//device/vibration",
70 "//gin", 71 "//gin",
71 "//google_apis", 72 "//google_apis",
72 "//gpu", 73 "//gpu",
73 "//gpu/command_buffer/client:gles2_implementation", 74 "//gpu/command_buffer/client:gles2_implementation",
74 "//gpu/command_buffer/client:gles2_interface", 75 "//gpu/command_buffer/client:gles2_interface",
75 "//media", 76 "//media",
76 "//media/capture",
77 "//media/gpu/ipc/client", 77 "//media/gpu/ipc/client",
78 "//media/midi", 78 "//media/midi",
79 "//media/mojo/interfaces", 79 "//media/mojo/interfaces",
80 "//media/mojo/interfaces:image_capture", 80 "//media/mojo/interfaces:image_capture",
81 "//mojo/common", 81 "//mojo/common",
82 "//mojo/edk/system", 82 "//mojo/edk/system",
83 "//mojo/public/cpp/bindings", 83 "//mojo/public/cpp/bindings",
84 "//mojo/public/js", 84 "//mojo/public/js",
85 "//net", 85 "//net",
86 "//net:extras", 86 "//net:extras",
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 # 'VCLinkerTool': { 240 # 'VCLinkerTool': {
241 # 'DelayLoadDLLs': [ 241 # 'DelayLoadDLLs': [
242 # 'dinput8.dll', 242 # 'dinput8.dll',
243 # 'user32.dll', 243 # 'user32.dll',
244 # 'dwmapi.dll', 244 # 'dwmapi.dll',
245 # ], 245 # ],
246 } 246 }
247 247
248 if (use_udev) { 248 if (use_udev) {
249 deps += [ 249 deps += [
250 "//device/capture",
250 "//device/udev_linux", 251 "//device/udev_linux",
251 "//media/capture",
252 ] 252 ]
253 } 253 }
254 254
255 if (enable_plugins) { 255 if (enable_plugins) {
256 sources += rebase_path(content_browser_gypi_values.plugin_browser_sources, 256 sources += rebase_path(content_browser_gypi_values.plugin_browser_sources,
257 ".", 257 ".",
258 "//content") 258 "//content")
259 deps += [ 259 deps += [
260 "//ppapi/host", 260 "//ppapi/host",
261 "//ppapi/proxy", 261 "//ppapi/proxy",
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 "speech/endpointer/energy_endpointer_params.cc", 330 "speech/endpointer/energy_endpointer_params.cc",
331 "speech/endpointer/energy_endpointer_params.h", 331 "speech/endpointer/energy_endpointer_params.h",
332 "speech/speech_recognition_engine.cc", 332 "speech/speech_recognition_engine.cc",
333 "speech/speech_recognition_engine.h", 333 "speech/speech_recognition_engine.h",
334 "speech/speech_recognizer_impl.cc", 334 "speech/speech_recognizer_impl.cc",
335 "speech/speech_recognizer_impl.h", 335 "speech/speech_recognizer_impl.h",
336 ] 336 ]
337 deps -= [ "//device/battery" ] 337 deps -= [ "//device/battery" ]
338 deps += [ 338 deps += [
339 "//content/public/android:jni", 339 "//content/public/android:jni",
340 "//device/capture:capture_java",
340 "//media", 341 "//media",
341 "//media/capture/content/android",
342 "//media/capture/video/android",
343 "//media/mojo/interfaces", 342 "//media/mojo/interfaces",
344 "//mojo/android:libsystem_java", 343 "//mojo/android:libsystem_java",
345 "//ui/android", 344 "//ui/android",
346 ] 345 ]
347 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] 346 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ]
348 libs += [ "jnigraphics" ] 347 libs += [ "jnigraphics" ]
349 } 348 }
350 349
351 if (is_mac) { 350 if (is_mac) {
352 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ] 351 sources -= [ "device_sensors/data_fetcher_shared_memory_default.cc" ]
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 if (!is_component_build) { 513 if (!is_component_build) {
515 public_deps = [ 514 public_deps = [
516 ":browser", 515 ":browser",
517 ] 516 ]
518 } else { 517 } else {
519 public_deps = [ 518 public_deps = [
520 "//third_party/leveldatabase", 519 "//third_party/leveldatabase",
521 ] 520 ]
522 } 521 }
523 } 522 }
OLDNEW
« no previous file with comments | « content/app/android/library_loader_hooks.cc ('k') | content/browser/browser_main_loop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698