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

Side by Side Diff: media/base/BUILD.gn

Issue 2634263002: Pass camera facing info to audio client (Closed)
Patch Set: Moved to chrome_browser_main_chromeos.cc Created 3 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 | « content/public/browser/media_capture_devices.h ('k') | media/base/video_facing.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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.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/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 "video_types.h", 257 "video_types.h",
258 "video_util.cc", 258 "video_util.cc",
259 "video_util.h", 259 "video_util.h",
260 "wall_clock_time_source.cc", 260 "wall_clock_time_source.cc",
261 "wall_clock_time_source.h", 261 "wall_clock_time_source.h",
262 ] 262 ]
263 263
264 allow_circular_includes_from = [] 264 allow_circular_includes_from = []
265 defines = [] 265 defines = []
266 public_deps = [ 266 public_deps = [
267 "//media/base:video_facing",
267 "//ppapi/features", 268 "//ppapi/features",
268 "//ui/gfx:color_space", 269 "//ui/gfx:color_space",
269 ] 270 ]
270 deps = [ 271 deps = [
271 "//base/third_party/dynamic_annotations:dynamic_annotations", 272 "//base/third_party/dynamic_annotations:dynamic_annotations",
272 "//gpu", 273 "//gpu",
273 "//media:media_features", 274 "//media:media_features",
274 "//media:shared_memory_support", 275 "//media:shared_memory_support",
275 "//ppapi/features", 276 "//ppapi/features",
276 "//skia", 277 "//skia",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 } 331 }
331 332
332 if (is_linux || is_win) { 333 if (is_linux || is_win) {
333 sources += [ 334 sources += [
334 "keyboard_event_counter.cc", 335 "keyboard_event_counter.cc",
335 "keyboard_event_counter.h", 336 "keyboard_event_counter.h",
336 ] 337 ]
337 } 338 }
338 } 339 }
339 340
341 source_set("video_facing") {
342 visibility = [
343 "//chromeos",
344 "//content/browser",
345 "//content/public/common:common_sources",
346 "//media/base",
347 "//media/capture",
348 ]
349 sources = [
350 "video_facing.h",
351 ]
352 }
353
340 static_library("test_support") { 354 static_library("test_support") {
341 testonly = true 355 testonly = true
342 sources = [ 356 sources = [
343 "fake_audio_render_callback.cc", 357 "fake_audio_render_callback.cc",
344 "fake_audio_render_callback.h", 358 "fake_audio_render_callback.h",
345 "fake_audio_renderer_sink.cc", 359 "fake_audio_renderer_sink.cc",
346 "fake_audio_renderer_sink.h", 360 "fake_audio_renderer_sink.h",
347 "fake_demuxer_stream.cc", 361 "fake_demuxer_stream.cc",
348 "fake_demuxer_stream.h", 362 "fake_demuxer_stream.h",
349 "fake_localized_strings.cc", 363 "fake_localized_strings.cc",
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 545
532 fuzzer_test("media_container_names_fuzzer") { 546 fuzzer_test("media_container_names_fuzzer") {
533 sources = [ 547 sources = [
534 "container_names_fuzzertest.cc", 548 "container_names_fuzzertest.cc",
535 ] 549 ]
536 deps = [ 550 deps = [
537 "//base", 551 "//base",
538 "//media", 552 "//media",
539 ] 553 ]
540 } 554 }
OLDNEW
« no previous file with comments | « content/public/browser/media_capture_devices.h ('k') | media/base/video_facing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698