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

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

Issue 2634263002: Pass camera facing info to audio client (Closed)
Patch Set: rebase 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 defines = [] 265 defines = []
266 public_deps = [ 266 public_deps = [
267 "//ppapi/features", 267 "//ppapi/features",
268 "//ui/gfx:color_space", 268 "//ui/gfx:color_space",
269 ] 269 ]
270 deps = [ 270 deps = [
271 "//base/third_party/dynamic_annotations:dynamic_annotations", 271 "//base/third_party/dynamic_annotations:dynamic_annotations",
272 "//gpu", 272 "//gpu",
273 "//media:media_features", 273 "//media:media_features",
274 "//media:shared_memory_support", 274 "//media:shared_memory_support",
275 "//media/base:video_facing",
275 "//ppapi/features", 276 "//ppapi/features",
276 "//skia", 277 "//skia",
277 "//third_party/libyuv", 278 "//third_party/libyuv",
278 "//ui/events:events_base", 279 "//ui/events:events_base",
279 "//url:url", 280 "//url:url",
280 ] 281 ]
281 libs = [] 282 libs = []
282 configs += [ ":base_config" ] 283 configs += [ ":base_config" ]
283 284
284 if (media_use_ffmpeg) { 285 if (media_use_ffmpeg) {
(...skipping 45 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

Powered by Google App Engine
This is Rietveld 408576698