| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "//chromecast/base", | 60 "//chromecast/base", |
| 61 "//chromecast/media/base", | 61 "//chromecast/media/base", |
| 62 "//chromecast/media/cma/backend:null", | 62 "//chromecast/media/cma/backend:null", |
| 63 "//chromecast/media/cma/base", | 63 "//chromecast/media/cma/base", |
| 64 "//chromecast/media/cma/decoder", | 64 "//chromecast/media/cma/decoder", |
| 65 "//chromecast/public/media", | 65 "//chromecast/public/media", |
| 66 "//media", | 66 "//media", |
| 67 "//media:shared_memory_support", | 67 "//media:shared_memory_support", |
| 68 ] | 68 ] |
| 69 | 69 |
| 70 if (chromecast_branding == "public") { | 70 if (chromecast_branding != "google") { |
| 71 deps += [ ":audio_filter_null" ] | 71 deps += [ ":audio_filter_null" ] |
| 72 } else { | 72 } else { |
| 73 deps += [ "//chromecast/internal/media/cma/backend/alsa:filter" ] | 73 deps += [ "//chromecast/internal/media/cma/backend/alsa:filter" ] |
| 74 } | 74 } |
| 75 } | 75 } |
| 76 | 76 |
| 77 source_set("audio_filter_null") { | 77 source_set("audio_filter_null") { |
| 78 sources = [ | 78 sources = [ |
| 79 "audio_filter_factory_default.cc", | 79 "audio_filter_factory_default.cc", |
| 80 ] | 80 ] |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 public_deps = [ | 141 public_deps = [ |
| 142 ":alsa_cma_backend", | 142 ":alsa_cma_backend", |
| 143 ] | 143 ] |
| 144 | 144 |
| 145 deps = [ | 145 deps = [ |
| 146 "//base", | 146 "//base", |
| 147 "//media", | 147 "//media", |
| 148 "//testing/gmock", | 148 "//testing/gmock", |
| 149 ] | 149 ] |
| 150 } | 150 } |
| OLD | NEW |