| 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 20 matching lines...) Expand all Loading... |
| 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 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 public_deps = [ | 140 public_deps = [ |
| 139 ":alsa_cma_backend", | 141 ":alsa_cma_backend", |
| 140 ] | 142 ] |
| 141 | 143 |
| 142 deps = [ | 144 deps = [ |
| 143 "//base", | 145 "//base", |
| 144 "//media", | 146 "//media", |
| 145 "//testing/gmock", | 147 "//testing/gmock", |
| 146 ] | 148 ] |
| 147 } | 149 } |
| OLD | NEW |