Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: chromecast/media/cma/backend/alsa/BUILD.gn

Issue 2745653002: [chromecast] disable audio filter for non-google build. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698