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

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

Issue 1232023006: Add support for VP9 packetization/depacketization. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 5 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) 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("../../build/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "source/rtcp_utility.cc", 51 "source/rtcp_utility.cc",
52 "source/rtcp_utility.h", 52 "source/rtcp_utility.h",
53 "source/rtp_format.cc", 53 "source/rtp_format.cc",
54 "source/rtp_format.h", 54 "source/rtp_format.h",
55 "source/rtp_format_h264.cc", 55 "source/rtp_format_h264.cc",
56 "source/rtp_format_h264.h", 56 "source/rtp_format_h264.h",
57 "source/rtp_format_video_generic.cc", 57 "source/rtp_format_video_generic.cc",
58 "source/rtp_format_video_generic.h", 58 "source/rtp_format_video_generic.h",
59 "source/rtp_format_vp8.cc", 59 "source/rtp_format_vp8.cc",
60 "source/rtp_format_vp8.h", 60 "source/rtp_format_vp8.h",
61 "source/rtp_format_vp9.cc",
62 "source/rtp_format_vp9.h",
61 "source/rtp_header_extension.cc", 63 "source/rtp_header_extension.cc",
62 "source/rtp_header_extension.h", 64 "source/rtp_header_extension.h",
63 "source/rtp_header_parser.cc", 65 "source/rtp_header_parser.cc",
64 "source/rtp_packet_history.cc", 66 "source/rtp_packet_history.cc",
65 "source/rtp_packet_history.h", 67 "source/rtp_packet_history.h",
66 "source/rtp_payload_registry.cc", 68 "source/rtp_payload_registry.cc",
67 "source/rtp_receiver_audio.cc", 69 "source/rtp_receiver_audio.cc",
68 "source/rtp_receiver_audio.h", 70 "source/rtp_receiver_audio.h",
69 "source/rtp_receiver_impl.cc", 71 "source/rtp_receiver_impl.cc",
70 "source/rtp_receiver_impl.h", 72 "source/rtp_receiver_impl.h",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 if (is_win) { 113 if (is_win) {
112 cflags = [ 114 cflags = [
113 # TODO(jschuh): Bug 1348: fix this warning. 115 # TODO(jschuh): Bug 1348: fix this warning.
114 "/wd4267", # size_t to int truncations 116 "/wd4267", # size_t to int truncations
115 117
116 # TODO(kjellander): Bug 261: fix this warning. 118 # TODO(kjellander): Bug 261: fix this warning.
117 "/wd4373", # virtual function override. 119 "/wd4373", # virtual function override.
118 ] 120 ]
119 } 121 }
120 } 122 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698