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

Side by Side Diff: chromecast/media/cma/backend/alsa/BUILD.gn

Issue 2701613006: [Chromecast] Process streams with different post-processing. (Closed)
Patch Set: Fix unittests Created 3 years, 9 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//chromecast/chromecast.gni") 7 import("//chromecast/chromecast.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 10
(...skipping 20 matching lines...) Expand all
31 "//media", 31 "//media",
32 ] 32 ]
33 } 33 }
34 34
35 source_set("alsa_cma_backend") { 35 source_set("alsa_cma_backend") {
36 sources = [ 36 sources = [
37 "alsa_wrapper.cc", 37 "alsa_wrapper.cc",
38 "alsa_wrapper.h", 38 "alsa_wrapper.h",
39 "audio_decoder_alsa.cc", 39 "audio_decoder_alsa.cc",
40 "audio_decoder_alsa.h", 40 "audio_decoder_alsa.h",
41 "filter_group.cc",
42 "filter_group.h",
41 "media_pipeline_backend_alsa.cc", 43 "media_pipeline_backend_alsa.cc",
42 "media_pipeline_backend_alsa.h", 44 "media_pipeline_backend_alsa.h",
43 "stream_mixer_alsa.cc", 45 "stream_mixer_alsa.cc",
44 "stream_mixer_alsa.h", 46 "stream_mixer_alsa.h",
45 "stream_mixer_alsa_input.cc", 47 "stream_mixer_alsa_input.cc",
46 "stream_mixer_alsa_input.h", 48 "stream_mixer_alsa_input.h",
47 "stream_mixer_alsa_input_impl.cc", 49 "stream_mixer_alsa_input_impl.cc",
48 "stream_mixer_alsa_input_impl.h", 50 "stream_mixer_alsa_input_impl.h",
49 ] 51 ]
50 52
51 libs = [ "asound" ] 53 libs = [ "asound" ]
52 54
53 deps = [ 55 deps = [
54 ":alsa_features", 56 ":alsa_features",
55 ":audio_filter_includes", 57 ":audio_filter_includes",
56 ":slew_volume", 58 ":slew_volume",
57 "//base", 59 "//base",
58 "//chromecast/base", 60 "//chromecast/base",
61 "//chromecast/media/base",
59 "//chromecast/media/cma/backend:null", 62 "//chromecast/media/cma/backend:null",
60 "//chromecast/media/cma/base", 63 "//chromecast/media/cma/base",
61 "//chromecast/media/cma/decoder", 64 "//chromecast/media/cma/decoder",
62 "//chromecast/public/media", 65 "//chromecast/public/media",
63 "//media", 66 "//media",
64 "//media:shared_memory_support", 67 "//media:shared_memory_support",
65 ] 68 ]
66 69
67 if (chromecast_branding == "public") { 70 if (chromecast_branding == "public") {
68 deps += [ ":audio_filter_null" ] 71 deps += [ ":audio_filter_null" ]
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 public_deps = [ 141 public_deps = [
139 ":alsa_cma_backend", 142 ":alsa_cma_backend",
140 ] 143 ]
141 144
142 deps = [ 145 deps = [
143 "//base", 146 "//base",
144 "//media", 147 "//media",
145 "//testing/gmock", 148 "//testing/gmock",
146 ] 149 ]
147 } 150 }
OLDNEW
« no previous file with comments | « chromecast/media/base/audio_device_ids.cc ('k') | chromecast/media/cma/backend/alsa/audio_decoder_alsa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698