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

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

Issue 2029323006: Add missing dependencies on audio, video and call to the new GN files. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add kjellander@ to OWNERS for BUILD.gn Created 4 years, 6 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/OWNERS » ('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
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 110 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
111 configs -= [ "//build/config/clang:extra_warnings" ] 111 configs -= [ "//build/config/clang:extra_warnings" ]
112 configs -= [ "//build/config/clang:find_bad_constructs" ] 112 configs -= [ "//build/config/clang:find_bad_constructs" ]
113 } 113 }
114 114
115 if (is_win) { 115 if (is_win) {
116 cflags += [ "/wd4389" ] # signed/unsigned mismatch. 116 cflags += [ "/wd4389" ] # signed/unsigned mismatch.
117 } 117 }
118 118
119 deps = [ 119 deps = [
120 "../call",
120 "../media", 121 "../media",
121 "../pc", 122 "../pc",
122 ] 123 ]
123 124
124 if (rtc_use_quic) { 125 if (rtc_use_quic) {
125 sources += [ 126 sources += [
126 "quicdatachannel.cc", 127 "quicdatachannel.cc",
127 "quicdatachannel.h", 128 "quicdatachannel.h",
128 "quicdatatransport.cc", 129 "quicdatatransport.cc",
129 "quicdatatransport.h", 130 "quicdatatransport.h",
130 ] 131 ]
131 deps += [ "//third_party/libquic" ] 132 deps += [ "//third_party/libquic" ]
132 public_deps = [ 133 public_deps = [
133 "//third_party/libquic", 134 "//third_party/libquic",
134 ] 135 ]
135 } 136 }
136 } 137 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698