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

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

Issue 2470913004: Moved transport_adapter.h/.cc from call/ to video/ dir to remove circular dependency (Closed)
Patch Set: Fixed footer guards 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 | webrtc/call/call_perf_tests.cc » ('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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 10
11 rtc_static_library("call") { 11 rtc_static_library("call") {
12 sources = [ 12 sources = [
13 "bitrate_allocator.cc", 13 "bitrate_allocator.cc",
14 "call.cc", 14 "call.cc",
15 "flexfec_receive_stream.cc", 15 "flexfec_receive_stream.cc",
16 "flexfec_receive_stream.h", 16 "flexfec_receive_stream.h",
17 "transport_adapter.cc",
18 "transport_adapter.h",
19 ] 17 ]
20 18
21 if (!build_with_chromium && is_clang) { 19 if (!build_with_chromium && is_clang) {
22 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 20 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
23 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 21 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
24 } 22 }
25 23
26 deps = [ 24 deps = [
27 "..:webrtc_common", 25 "..:webrtc_common",
28 "../api:call_api", 26 "../api:call_api",
(...skipping 21 matching lines...) Expand all
50 ":call", 48 ":call",
51 "//testing/gmock", 49 "//testing/gmock",
52 "//testing/gtest", 50 "//testing/gtest",
53 ] 51 ]
54 if (!build_with_chromium && is_clang) { 52 if (!build_with_chromium && is_clang) {
55 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 53 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
56 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 54 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
57 } 55 }
58 } 56 }
59 } 57 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/call/call_perf_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698