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

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

Issue 1714593003: Introduce media::AudioPushFifo and a couple of use cases (and clean-ups). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Win compile issue. Created 4 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 21 matching lines...) Expand all
32 "audio_discard_helper.cc", 32 "audio_discard_helper.cc",
33 "audio_discard_helper.h", 33 "audio_discard_helper.h",
34 "audio_fifo.cc", 34 "audio_fifo.cc",
35 "audio_fifo.h", 35 "audio_fifo.h",
36 "audio_hardware_config.cc", 36 "audio_hardware_config.cc",
37 "audio_hardware_config.h", 37 "audio_hardware_config.h",
38 "audio_hash.cc", 38 "audio_hash.cc",
39 "audio_hash.h", 39 "audio_hash.h",
40 "audio_pull_fifo.cc", 40 "audio_pull_fifo.cc",
41 "audio_pull_fifo.h", 41 "audio_pull_fifo.h",
42 "audio_rechunker.cc",
43 "audio_rechunker.h",
42 "audio_renderer.cc", 44 "audio_renderer.cc",
43 "audio_renderer.h", 45 "audio_renderer.h",
44 "audio_renderer_mixer.cc", 46 "audio_renderer_mixer.cc",
45 "audio_renderer_mixer.h", 47 "audio_renderer_mixer.h",
46 "audio_renderer_mixer_input.cc", 48 "audio_renderer_mixer_input.cc",
47 "audio_renderer_mixer_input.h", 49 "audio_renderer_mixer_input.h",
48 "audio_renderer_sink.h", 50 "audio_renderer_sink.h",
49 "audio_shifter.cc", 51 "audio_shifter.cc",
50 "audio_shifter.h", 52 "audio_shifter.h",
51 "audio_splicer.cc", 53 "audio_splicer.cc",
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 "audio_buffer_converter_unittest.cc", 380 "audio_buffer_converter_unittest.cc",
379 "audio_buffer_queue_unittest.cc", 381 "audio_buffer_queue_unittest.cc",
380 "audio_buffer_unittest.cc", 382 "audio_buffer_unittest.cc",
381 "audio_bus_unittest.cc", 383 "audio_bus_unittest.cc",
382 "audio_converter_unittest.cc", 384 "audio_converter_unittest.cc",
383 "audio_discard_helper_unittest.cc", 385 "audio_discard_helper_unittest.cc",
384 "audio_fifo_unittest.cc", 386 "audio_fifo_unittest.cc",
385 "audio_hardware_config_unittest.cc", 387 "audio_hardware_config_unittest.cc",
386 "audio_hash_unittest.cc", 388 "audio_hash_unittest.cc",
387 "audio_pull_fifo_unittest.cc", 389 "audio_pull_fifo_unittest.cc",
390 "audio_rechunker_unittest.cc",
388 "audio_renderer_mixer_input_unittest.cc", 391 "audio_renderer_mixer_input_unittest.cc",
389 "audio_renderer_mixer_unittest.cc", 392 "audio_renderer_mixer_unittest.cc",
390 "audio_shifter_unittest.cc", 393 "audio_shifter_unittest.cc",
391 "audio_splicer_unittest.cc", 394 "audio_splicer_unittest.cc",
392 "audio_timestamp_helper_unittest.cc", 395 "audio_timestamp_helper_unittest.cc",
393 "bind_to_current_loop_unittest.cc", 396 "bind_to_current_loop_unittest.cc",
394 "bit_reader_unittest.cc", 397 "bit_reader_unittest.cc",
395 "callback_holder.h", 398 "callback_holder.h",
396 "callback_holder_unittest.cc", 399 "callback_holder_unittest.cc",
397 "channel_mixer_unittest.cc", 400 "channel_mixer_unittest.cc",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 } 553 }
551 554
552 fuzzer_test("media_container_names_fuzzer") { 555 fuzzer_test("media_container_names_fuzzer") {
553 sources = [ 556 sources = [
554 "container_names_fuzzertest.cc", 557 "container_names_fuzzertest.cc",
555 ] 558 ]
556 deps = [ 559 deps = [
557 "//media", 560 "//media",
558 ] 561 ]
559 } 562 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698