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

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

Issue 2904183002: Structure of BBR's implementation,some main classes and functions which are going to be used (Closed)
Patch Set: Added header files to build file Created 3 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/modules/remote_bitrate_estimator/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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 import("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 "//resources/sprint-uplink.rx", 191 "//resources/sprint-uplink.rx",
192 "//resources/synthetic-trace.rx", 192 "//resources/synthetic-trace.rx",
193 "//resources/tmobile-downlink.rx", 193 "//resources/tmobile-downlink.rx",
194 "//resources/tmobile-uplink.rx", 194 "//resources/tmobile-uplink.rx",
195 "//resources/verizon3g-downlink.rx", 195 "//resources/verizon3g-downlink.rx",
196 "//resources/verizon3g-uplink.rx", 196 "//resources/verizon3g-uplink.rx",
197 "//resources/verizon4g-downlink.rx", 197 "//resources/verizon4g-downlink.rx",
198 "//resources/verizon4g-uplink.rx", 198 "//resources/verizon4g-uplink.rx",
199 "//resources/voice_engine/audio_tiny48.wav", 199 "//resources/voice_engine/audio_tiny48.wav",
200 ] 200 ]
201
202 if (is_ios) { 201 if (is_ios) {
203 bundle_data("modules_unittests_bundle_data") { 202 bundle_data("modules_unittests_bundle_data") {
204 testonly = true 203 testonly = true
205 sources = modules_unittests_resources 204 sources = modules_unittests_resources
206 outputs = [ 205 outputs = [
207 "{{bundle_resources_dir}}/{{source_file_part}}", 206 "{{bundle_resources_dir}}/{{source_file_part}}",
208 ] 207 ]
209 } 208 }
210 } 209 }
211 210
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 shard_timeout = 900 251 shard_timeout = 900
253 } 252 }
254 if (is_ios) { 253 if (is_ios) {
255 info_plist = "//webrtc/test/ios/Info.plist" 254 info_plist = "//webrtc/test/ios/Info.plist"
256 deps += [ ":modules_unittests_bundle_data" ] 255 deps += [ ":modules_unittests_bundle_data" ]
257 configs += [ "..:common_objc" ] 256 configs += [ "..:common_objc" ]
258 ldflags = [ "-ObjC" ] 257 ldflags = [ "-ObjC" ]
259 } 258 }
260 } 259 }
261 } 260 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698