OLD | NEW |
---|---|
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
48 "stream_mixer_alsa_input.h", | 48 "stream_mixer_alsa_input.h", |
49 "stream_mixer_alsa_input_impl.cc", | 49 "stream_mixer_alsa_input_impl.cc", |
50 "stream_mixer_alsa_input_impl.h", | 50 "stream_mixer_alsa_input_impl.h", |
51 ] | 51 ] |
52 | 52 |
53 libs = [ "asound" ] | 53 libs = [ "asound" ] |
54 | 54 |
55 deps = [ | 55 deps = [ |
56 ":alsa_features", | 56 ":alsa_features", |
57 ":audio_filter_includes", | 57 ":audio_filter_includes", |
58 ":slew_volume", | |
58 "//base", | 59 "//base", |
59 "//chromecast/base", | 60 "//chromecast/base", |
60 "//chromecast/media/cma/backend", | 61 "//chromecast/media/cma/backend", |
61 "//chromecast/media/cma/base", | 62 "//chromecast/media/cma/base", |
62 "//chromecast/media/cma/decoder", | 63 "//chromecast/media/cma/decoder", |
63 "//chromecast/public/media", | 64 "//chromecast/public/media", |
64 "//media", | 65 "//media", |
65 "//media:shared_memory_support", | 66 "//media:shared_memory_support", |
66 ] | 67 ] |
67 | 68 |
(...skipping 19 matching lines...) Expand all Loading... | |
87 "audio_filter_factory.h", | 88 "audio_filter_factory.h", |
88 "audio_filter_interface.h", | 89 "audio_filter_interface.h", |
89 ] | 90 ] |
90 | 91 |
91 deps = [ | 92 deps = [ |
92 "//base", | 93 "//base", |
93 "//media", | 94 "//media", |
94 ] | 95 ] |
95 } | 96 } |
96 | 97 |
98 source_set("slew_volume") { | |
99 sources = [ | |
100 "slew_volume.cc", | |
101 "slew_volume.h", | |
102 ] | |
103 deps = [ | |
104 "//base", | |
kmackay
2016/09/14 20:48:14
also //media for FMAC/FMUL
jyw
2016/09/15 01:12:15
Done.
| |
105 ] | |
106 } | |
107 | |
97 # GYP target: chromecast/media/media.gyp:chromecast_alsa_features | 108 # GYP target: chromecast/media/media.gyp:chromecast_alsa_features |
98 buildflag_header("alsa_features") { | 109 buildflag_header("alsa_features") { |
99 header = "alsa_features.h" | 110 header = "alsa_features.h" |
100 | 111 |
101 flags = [ "ALSA_MONOTONIC_RAW_TSTAMPS=$use_alsa_monotonic_raw_tstamps" ] | 112 flags = [ "ALSA_MONOTONIC_RAW_TSTAMPS=$use_alsa_monotonic_raw_tstamps" ] |
102 } | 113 } |
103 | 114 |
104 # GYP target: chromecast/media/media.gyp:cast_alsa_cma_backend_unittests | 115 # GYP target: chromecast/media/media.gyp:cast_alsa_cma_backend_unittests |
105 test("cast_alsa_cma_backend_unittests") { | 116 test("cast_alsa_cma_backend_unittests") { |
106 sources = [ | 117 sources = [ |
(...skipping 25 matching lines...) Expand all Loading... | |
132 public_deps = [ | 143 public_deps = [ |
133 ":alsa_cma_backend", | 144 ":alsa_cma_backend", |
134 ] | 145 ] |
135 | 146 |
136 deps = [ | 147 deps = [ |
137 "//base", | 148 "//base", |
138 "//media", | 149 "//media", |
139 "//testing/gmock", | 150 "//testing/gmock", |
140 ] | 151 ] |
141 } | 152 } |
OLD | NEW |