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

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: Spell fix 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
72 # TODO(charujain): Clean this dependency when downstream projects are
73 # updated to properly depend on audio_format_conversion target.
74 ":audio_format_conversion",
71 "../../base:rtc_base_approved", 75 "../../base:rtc_base_approved",
72 ] 76 ]
73 } 77 }
74 78
75 rtc_static_library("builtin_audio_decoder_factory") { 79 rtc_static_library("builtin_audio_decoder_factory") {
76 sources = [ 80 sources = [
77 "codecs/builtin_audio_decoder_factory.cc", 81 "codecs/builtin_audio_decoder_factory.cc",
78 "codecs/builtin_audio_decoder_factory.h", 82 "codecs/builtin_audio_decoder_factory.h",
79 ] 83 ]
80 deps = [ 84 deps = [
(...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after
1672 "../../test:test_support_main", 1676 "../../test:test_support_main",
1673 "//testing/gtest", 1677 "//testing/gtest",
1674 ] 1678 ]
1675 1679
1676 if (!build_with_chromium && is_clang) { 1680 if (!build_with_chromium && is_clang) {
1677 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1681 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1678 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1682 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1679 } 1683 }
1680 } 1684 }
1681 } 1685 }
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