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

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

Issue 2634263002: Pass camera facing info to audio client (Closed)
Patch Set: Change to use ObserverList 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
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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 defines = [] 273 defines = []
274 public_deps = [ 274 public_deps = [
275 "//ppapi/features", 275 "//ppapi/features",
276 "//ui/gfx:color_space", 276 "//ui/gfx:color_space",
277 ] 277 ]
278 deps = [ 278 deps = [
279 "//base/third_party/dynamic_annotations:dynamic_annotations", 279 "//base/third_party/dynamic_annotations:dynamic_annotations",
280 "//gpu", 280 "//gpu",
281 "//media:media_features", 281 "//media:media_features",
282 "//media:shared_memory_support", 282 "//media:shared_memory_support",
283 "//media/base:video_facing",
283 "//ppapi/features", 284 "//ppapi/features",
284 "//skia", 285 "//skia",
285 "//third_party/libyuv", 286 "//third_party/libyuv",
286 "//ui/events:events_base", 287 "//ui/events:events_base",
287 "//url:url", 288 "//url:url",
288 ] 289 ]
289 libs = [] 290 libs = []
290 configs += [ ":base_config" ] 291 configs += [ ":base_config" ]
291 292
292 if (media_use_ffmpeg) { 293 if (media_use_ffmpeg) {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 } 349 }
349 350
350 if (is_linux || is_win) { 351 if (is_linux || is_win) {
351 sources += [ 352 sources += [
352 "keyboard_event_counter.cc", 353 "keyboard_event_counter.cc",
353 "keyboard_event_counter.h", 354 "keyboard_event_counter.h",
354 ] 355 ]
355 } 356 }
356 } 357 }
357 358
359 source_set("video_facing") {
360 visibility = [
361 "//chromeos",
362 "//content/browser",
363 "//content/public/common:common_sources",
364 "//media/base",
365 "//media/capture",
366 ]
367 sources = [
368 "video_facing.h",
369 ]
370 }
371
358 static_library("test_support") { 372 static_library("test_support") {
359 testonly = true 373 testonly = true
360 sources = [ 374 sources = [
361 "fake_audio_render_callback.cc", 375 "fake_audio_render_callback.cc",
362 "fake_audio_render_callback.h", 376 "fake_audio_render_callback.h",
363 "fake_audio_renderer_sink.cc", 377 "fake_audio_renderer_sink.cc",
364 "fake_audio_renderer_sink.h", 378 "fake_audio_renderer_sink.h",
365 "fake_demuxer_stream.cc", 379 "fake_demuxer_stream.cc",
366 "fake_demuxer_stream.h", 380 "fake_demuxer_stream.h",
367 "fake_localized_strings.cc", 381 "fake_localized_strings.cc",
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 633
620 fuzzer_test("media_container_names_fuzzer") { 634 fuzzer_test("media_container_names_fuzzer") {
621 sources = [ 635 sources = [
622 "container_names_fuzzertest.cc", 636 "container_names_fuzzertest.cc",
623 ] 637 ]
624 deps = [ 638 deps = [
625 "//base", 639 "//base",
626 "//media", 640 "//media",
627 ] 641 ]
628 } 642 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698