| 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", | |
| 43 "media_pipeline_backend_alsa.cc", | 41 "media_pipeline_backend_alsa.cc", |
| 44 "media_pipeline_backend_alsa.h", | 42 "media_pipeline_backend_alsa.h", |
| 45 "stream_mixer_alsa.cc", | 43 "stream_mixer_alsa.cc", |
| 46 "stream_mixer_alsa.h", | 44 "stream_mixer_alsa.h", |
| 47 "stream_mixer_alsa_input.cc", | 45 "stream_mixer_alsa_input.cc", |
| 48 "stream_mixer_alsa_input.h", | 46 "stream_mixer_alsa_input.h", |
| 49 "stream_mixer_alsa_input_impl.cc", | 47 "stream_mixer_alsa_input_impl.cc", |
| 50 "stream_mixer_alsa_input_impl.h", | 48 "stream_mixer_alsa_input_impl.h", |
| 51 ] | 49 ] |
| 52 | 50 |
| 53 libs = [ "asound" ] | 51 libs = [ "asound" ] |
| 54 | 52 |
| 55 deps = [ | 53 deps = [ |
| 56 ":alsa_features", | 54 ":alsa_features", |
| 57 ":audio_filter_includes", | 55 ":audio_filter_includes", |
| 58 ":slew_volume", | 56 ":slew_volume", |
| 59 "//base", | 57 "//base", |
| 60 "//chromecast/base", | 58 "//chromecast/base", |
| 61 "//chromecast/media/base", | |
| 62 "//chromecast/media/cma/backend:null", | 59 "//chromecast/media/cma/backend:null", |
| 63 "//chromecast/media/cma/base", | 60 "//chromecast/media/cma/base", |
| 64 "//chromecast/media/cma/decoder", | 61 "//chromecast/media/cma/decoder", |
| 65 "//chromecast/public/media", | 62 "//chromecast/public/media", |
| 66 "//media", | 63 "//media", |
| 67 "//media:shared_memory_support", | 64 "//media:shared_memory_support", |
| 68 ] | 65 ] |
| 69 | 66 |
| 70 if (chromecast_branding == "public") { | 67 if (chromecast_branding == "public") { |
| 71 deps += [ ":audio_filter_null" ] | 68 deps += [ ":audio_filter_null" ] |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 public_deps = [ | 138 public_deps = [ |
| 142 ":alsa_cma_backend", | 139 ":alsa_cma_backend", |
| 143 ] | 140 ] |
| 144 | 141 |
| 145 deps = [ | 142 deps = [ |
| 146 "//base", | 143 "//base", |
| 147 "//media", | 144 "//media", |
| 148 "//testing/gmock", | 145 "//testing/gmock", |
| 149 ] | 146 ] |
| 150 } | 147 } |
| OLD | NEW |