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

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

Issue 2564333002: Reland of: Separating SCTP code from BaseChannel/MediaChannel. (Closed)
Patch Set: Various cleanup. Created 3 years, 12 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("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("../build/webrtc.gni") 10 import("../build/webrtc.gni")
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 "engine/webrtcvideocapturerfactory.h", 136 "engine/webrtcvideocapturerfactory.h",
137 "engine/webrtcvideodecoderfactory.h", 137 "engine/webrtcvideodecoderfactory.h",
138 "engine/webrtcvideoencoderfactory.cc", 138 "engine/webrtcvideoencoderfactory.cc",
139 "engine/webrtcvideoencoderfactory.h", 139 "engine/webrtcvideoencoderfactory.h",
140 "engine/webrtcvideoengine2.cc", 140 "engine/webrtcvideoengine2.cc",
141 "engine/webrtcvideoengine2.h", 141 "engine/webrtcvideoengine2.h",
142 "engine/webrtcvideoframe.h", 142 "engine/webrtcvideoframe.h",
143 "engine/webrtcvoe.h", 143 "engine/webrtcvoe.h",
144 "engine/webrtcvoiceengine.cc", 144 "engine/webrtcvoiceengine.cc",
145 "engine/webrtcvoiceengine.h", 145 "engine/webrtcvoiceengine.h",
146 "sctp/sctpdataengine.cc", 146 "sctp/sctptransport.cc",
147 "sctp/sctpdataengine.h", 147 "sctp/sctptransport.h",
148 "sctp/sctptransportinternal.h",
148 ] 149 ]
149 150
150 configs += [ ":rtc_media_warnings_config" ] 151 configs += [ ":rtc_media_warnings_config" ]
151 152
152 if (!build_with_chromium && is_clang) { 153 if (!build_with_chromium && is_clang) {
153 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 154 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
154 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 155 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
155 } 156 }
156 157
157 if (is_win) { 158 if (is_win) {
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 "engine/internaldecoderfactory_unittest.cc", 332 "engine/internaldecoderfactory_unittest.cc",
332 "engine/nullwebrtcvideoengine_unittest.cc", 333 "engine/nullwebrtcvideoengine_unittest.cc",
333 "engine/payload_type_mapper_unittest.cc", 334 "engine/payload_type_mapper_unittest.cc",
334 "engine/simulcast_unittest.cc", 335 "engine/simulcast_unittest.cc",
335 "engine/videodecodersoftwarefallbackwrapper_unittest.cc", 336 "engine/videodecodersoftwarefallbackwrapper_unittest.cc",
336 "engine/videoencodersoftwarefallbackwrapper_unittest.cc", 337 "engine/videoencodersoftwarefallbackwrapper_unittest.cc",
337 "engine/webrtcmediaengine_unittest.cc", 338 "engine/webrtcmediaengine_unittest.cc",
338 "engine/webrtcvideocapturer_unittest.cc", 339 "engine/webrtcvideocapturer_unittest.cc",
339 "engine/webrtcvideoengine2_unittest.cc", 340 "engine/webrtcvideoengine2_unittest.cc",
340 "engine/webrtcvoiceengine_unittest.cc", 341 "engine/webrtcvoiceengine_unittest.cc",
341 "sctp/sctpdataengine_unittest.cc", 342 "sctp/sctptransport_unittest.cc",
342 ] 343 ]
343 344
344 configs += [ ":rtc_media_unittests_config" ] 345 configs += [ ":rtc_media_unittests_config" ]
345 346
346 if (rtc_use_h264) { 347 if (rtc_use_h264) {
347 defines += [ "WEBRTC_USE_H264" ] 348 defines += [ "WEBRTC_USE_H264" ]
348 } 349 }
349 if (is_win) { 350 if (is_win) {
350 cflags = [ 351 cflags = [
351 "/wd4245", # conversion from int to size_t, signed/unsigned mismatch. 352 "/wd4245", # conversion from int to size_t, signed/unsigned mismatch.
(...skipping 26 matching lines...) Expand all
378 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. 379 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243.
379 ":rtc_media", 380 ":rtc_media",
380 ":rtc_unittest_main", 381 ":rtc_unittest_main",
381 "../audio", 382 "../audio",
382 "../base:rtc_base_tests_utils", 383 "../base:rtc_base_tests_utils",
383 "../modules/audio_device:mock_audio_device", 384 "../modules/audio_device:mock_audio_device",
384 "../system_wrappers:metrics_default", 385 "../system_wrappers:metrics_default",
385 ] 386 ]
386 } 387 }
387 } 388 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698