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

Side by Side Diff: webrtc/api/BUILD.gn

Issue 2799033006: Injectable audio encoders: Moved audio encoder, factory and builtin factory to api/. (Closed)
Patch Set: More backwards-compatibility! Created 3 years, 7 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 | webrtc/api/audio_codecs/BUILD.gn » ('j') | 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) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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("../webrtc.gni") 9 import("../webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 11 matching lines...) Expand all
22 sources = [ 22 sources = [
23 "call/audio_sink.h", 23 "call/audio_sink.h",
24 ] 24 ]
25 25
26 deps = [ 26 deps = [
27 # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done. 27 # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done.
28 ":audio_mixer_api", 28 ":audio_mixer_api",
29 ":transport_api", 29 ":transport_api",
30 "..:webrtc_common", 30 "..:webrtc_common",
31 "../base:rtc_base_approved", 31 "../base:rtc_base_approved",
32 "../modules/audio_coding:audio_encoder_interface",
33 "audio_codecs:audio_codecs_api", 32 "audio_codecs:audio_codecs_api",
34 ] 33 ]
35 } 34 }
36 35
37 rtc_static_library("libjingle_peerconnection_api") { 36 rtc_static_library("libjingle_peerconnection_api") {
38 # Cannot have GN check enabled since that would introduce dependency cycles 37 # Cannot have GN check enabled since that would introduce dependency cycles
39 # TODO(kjellander): Remove (bugs.webrtc.org/7504) 38 # TODO(kjellander): Remove (bugs.webrtc.org/7504)
40 check_includes = false 39 check_includes = false
41 cflags = [] 40 cflags = []
42 sources = [ 41 sources = [
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 261 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
263 } 262 }
264 263
265 deps = [ 264 deps = [
266 ":libjingle_peerconnection_api", 265 ":libjingle_peerconnection_api",
267 ":ortc_api", 266 ":ortc_api",
268 "//webrtc/test:test_support", 267 "//webrtc/test:test_support",
269 ] 268 ]
270 } 269 }
271 } 270 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/audio_codecs/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698