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

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

Issue 3013623002: Fix no_size_t_to_int_warning in rtp_rtcp:rtp_rtcp_format target (Closed)
Patch Set: . Created 3 years, 3 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/rtp_rtcp/include/rtp_header_extension_map.h » ('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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 10
(...skipping 16 matching lines...) Expand all
27 deps = [ 27 deps = [
28 "..:module_api", 28 "..:module_api",
29 "../..:webrtc_common", 29 "../..:webrtc_common",
30 "../../api:array_view", 30 "../../api:array_view",
31 "../../api:libjingle_peerconnection_api", 31 "../../api:libjingle_peerconnection_api",
32 "../../api:optional", 32 "../../api:optional",
33 "../../common_video", 33 "../../common_video",
34 "../../rtc_base:rtc_base_approved", 34 "../../rtc_base:rtc_base_approved",
35 "../../system_wrappers", 35 "../../system_wrappers",
36 ] 36 ]
37
38 # TODO(crbug.com/webrtc/1348): Fix this warning.
39 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
40 } 37 }
41 38
42 rtc_static_library("rtp_rtcp") { 39 rtc_static_library("rtp_rtcp") {
43 sources = [ 40 sources = [
44 "include/flexfec_receiver.h", 41 "include/flexfec_receiver.h",
45 "include/flexfec_sender.h", 42 "include/flexfec_sender.h",
46 "include/receive_statistics.h", 43 "include/receive_statistics.h",
47 "include/remote_ntp_time_estimator.h", 44 "include/remote_ntp_time_estimator.h",
48 "include/rtp_header_parser.h", 45 "include/rtp_header_parser.h",
49 "include/rtp_payload_registry.h", 46 "include/rtp_payload_registry.h",
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 ] 379 ]
383 380
384 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. 381 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning.
385 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 382 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
386 if (!build_with_chromium && is_clang) { 383 if (!build_with_chromium && is_clang) {
387 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 384 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
388 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 385 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
389 } 386 }
390 } 387 }
391 } 388 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698