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

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2472643003: Add audio_format_conversion to deps for audio_decoder_factory_interface. (Closed)
Patch Set: Created 4 years, 1 month 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 (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../../build/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 ] 61 ]
62 } 62 }
63 63
64 rtc_source_set("audio_decoder_factory_interface") { 64 rtc_source_set("audio_decoder_factory_interface") {
65 sources = [ 65 sources = [
66 "codecs/audio_decoder_factory.h", 66 "codecs/audio_decoder_factory.h",
67 ] 67 ]
68 deps = [ 68 deps = [
69 ":audio_decoder_interface", 69 ":audio_decoder_interface",
70 ":audio_format", 70 ":audio_format",
71 ":audio_format_conversion",
kwiberg-webrtc 2016/11/02 10:00:42 Thanks, but this doesn't look right. audio_decoder
kjellander_webrtc 2016/11/02 10:15:08 You're right. But as there are now downstream proj
kwiberg-webrtc 2016/11/02 10:23:14 Right. I'm not usually an "end justifies the means
71 "../../base:rtc_base_approved", 72 "../../base:rtc_base_approved",
72 ] 73 ]
73 } 74 }
74 75
75 rtc_static_library("builtin_audio_decoder_factory") { 76 rtc_static_library("builtin_audio_decoder_factory") {
76 sources = [ 77 sources = [
77 "codecs/builtin_audio_decoder_factory.cc", 78 "codecs/builtin_audio_decoder_factory.cc",
78 "codecs/builtin_audio_decoder_factory.h", 79 "codecs/builtin_audio_decoder_factory.h",
79 ] 80 ]
80 deps = [ 81 deps = [
(...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after
1672 "../../test:test_support_main", 1673 "../../test:test_support_main",
1673 "//testing/gtest", 1674 "//testing/gtest",
1674 ] 1675 ]
1675 1676
1676 if (!build_with_chromium && is_clang) { 1677 if (!build_with_chromium && is_clang) {
1677 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1678 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1678 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1679 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1679 } 1680 }
1680 } 1681 }
1681 } 1682 }
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