| 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", |
| 105 "//media", |
| 106 ] |
| 107 } |
| 108 |
| 97 # GYP target: chromecast/media/media.gyp:chromecast_alsa_features | 109 # GYP target: chromecast/media/media.gyp:chromecast_alsa_features |
| 98 buildflag_header("alsa_features") { | 110 buildflag_header("alsa_features") { |
| 99 header = "alsa_features.h" | 111 header = "alsa_features.h" |
| 100 | 112 |
| 101 flags = [ "ALSA_MONOTONIC_RAW_TSTAMPS=$use_alsa_monotonic_raw_tstamps" ] | 113 flags = [ "ALSA_MONOTONIC_RAW_TSTAMPS=$use_alsa_monotonic_raw_tstamps" ] |
| 102 } | 114 } |
| 103 | 115 |
| 104 # GYP target: chromecast/media/media.gyp:cast_alsa_cma_backend_unittests | 116 # GYP target: chromecast/media/media.gyp:cast_alsa_cma_backend_unittests |
| 105 test("cast_alsa_cma_backend_unittests") { | 117 test("cast_alsa_cma_backend_unittests") { |
| 106 sources = [ | 118 sources = [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 132 public_deps = [ | 144 public_deps = [ |
| 133 ":alsa_cma_backend", | 145 ":alsa_cma_backend", |
| 134 ] | 146 ] |
| 135 | 147 |
| 136 deps = [ | 148 deps = [ |
| 137 "//base", | 149 "//base", |
| 138 "//media", | 150 "//media", |
| 139 "//testing/gmock", | 151 "//testing/gmock", |
| 140 ] | 152 ] |
| 141 } | 153 } |
| OLD | NEW |