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

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

Issue 2426563003: Moved transport.h from webrtc/ to webrtc/api, created build target and updated dependencies. (Closed)
Patch Set: Created issue webrtc:6785 as reminder and linked to it in comments. Created 4 years 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 | « webrtc/video_send_stream.h ('k') | webrtc/voice_engine/include/voe_network.h » ('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) 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 10
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 } 82 }
83 83
84 public_deps = [ 84 public_deps = [
85 "../modules/audio_coding", 85 "../modules/audio_coding",
86 ] 86 ]
87 deps = [ 87 deps = [
88 ":level_indicator", 88 ":level_indicator",
89 "..:webrtc_common", 89 "..:webrtc_common",
90 "../api:audio_mixer_api", 90 "../api:audio_mixer_api",
91 "../api:call_api", 91 "../api:call_api",
92 "../api:transport_api",
92 "../base:rtc_base_approved", 93 "../base:rtc_base_approved",
93 "../common_audio", 94 "../common_audio",
94 "../logging:rtc_event_log_api", 95 "../logging:rtc_event_log_api",
95 "../modules/audio_coding:audio_decoder_factory_interface", 96 "../modules/audio_coding:audio_decoder_factory_interface",
96 "../modules/audio_coding:audio_format_conversion", 97 "../modules/audio_coding:audio_format_conversion",
97 "../modules/audio_coding:builtin_audio_decoder_factory", 98 "../modules/audio_coding:builtin_audio_decoder_factory",
98 "../modules/audio_coding:rent_a_codec", 99 "../modules/audio_coding:rent_a_codec",
99 "../modules/audio_conference_mixer", 100 "../modules/audio_conference_mixer",
100 "../modules/audio_device", 101 "../modules/audio_device",
101 "../modules/audio_processing", 102 "../modules/audio_processing",
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 171
171 configs += [ ":channel_transport_warnings_config" ] 172 configs += [ ":channel_transport_warnings_config" ]
172 173
173 if (!build_with_chromium && is_clang) { 174 if (!build_with_chromium && is_clang) {
174 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 175 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
175 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 176 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
176 } 177 }
177 178
178 deps = [ 179 deps = [
179 "..:webrtc_common", 180 "..:webrtc_common",
181 "../api:transport_api",
180 "../system_wrappers", 182 "../system_wrappers",
181 "//testing/gtest", 183 "//testing/gtest",
182 ] 184 ]
183 } 185 }
184 186
185 rtc_test("voice_engine_unittests") { 187 rtc_test("voice_engine_unittests") {
186 deps = [ 188 deps = [
187 ":channel_transport", 189 ":channel_transport",
188 ":voice_engine", 190 ":voice_engine",
189 "//testing/gmock", 191 "//testing/gmock",
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 ] 346 ]
345 } 347 }
346 348
347 if (!build_with_chromium && is_clang) { 349 if (!build_with_chromium && is_clang) {
348 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) . 350 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) .
349 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 351 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
350 } 352 }
351 } 353 }
352 } 354 }
353 } 355 }
OLDNEW
« no previous file with comments | « webrtc/video_send_stream.h ('k') | webrtc/voice_engine/include/voe_network.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698