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

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

Issue 2854123003: Build WebRTC with data channel only. (Closed)
Patch Set: Rebase. 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
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 outputs = [ 56 outputs = [
57 "{{bundle_resources_dir}}/{{source_file_part}}", 57 "{{bundle_resources_dir}}/{{source_file_part}}",
58 ] 58 ]
59 } 59 }
60 } 60 }
61 61
62 rtc_test("modules_tests") { 62 rtc_test("modules_tests") {
63 testonly = true 63 testonly = true
64 64
65 deps = [ 65 deps = [
66 "../pc:create_pc_factory",
66 "../test:test_main", 67 "../test:test_main",
67 "../test:video_test_common", 68 "../test:video_test_common",
68 "audio_coding:audio_coding_modules_tests", 69 "audio_coding:audio_coding_modules_tests",
69 "desktop_capture:desktop_capture_modules_tests", 70 "desktop_capture:desktop_capture_modules_tests",
70 "rtp_rtcp:rtp_rtcp_modules_tests", 71 "rtp_rtcp:rtp_rtcp_modules_tests",
71 "video_coding:video_coding_modules_tests", 72 "video_coding:video_coding_modules_tests",
72 "//testing/gmock", 73 "//testing/gmock",
73 "//testing/gtest", 74 "//testing/gtest",
74 ] 75 ]
75 76
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 shard_timeout = 900 252 shard_timeout = 900
252 } 253 }
253 if (is_ios) { 254 if (is_ios) {
254 info_plist = "//webrtc/test/ios/Info.plist" 255 info_plist = "//webrtc/test/ios/Info.plist"
255 deps += [ ":modules_unittests_bundle_data" ] 256 deps += [ ":modules_unittests_bundle_data" ]
256 configs += [ "..:common_objc" ] 257 configs += [ "..:common_objc" ]
257 ldflags = [ "-ObjC" ] 258 ldflags = [ "-ObjC" ]
258 } 259 }
259 } 260 }
260 } 261 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698