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

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

Issue 1520613004: cast: Split Rtcp into two for sender and receiver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@timestamp
Patch Set: Rebased Created 4 years, 11 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 | media/cast/cast.gyp » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 sources = [ 72 sources = [
73 "net/cast_transport_config.cc", 73 "net/cast_transport_config.cc",
74 "net/cast_transport_config.h", 74 "net/cast_transport_config.h",
75 "net/cast_transport_defines.h", 75 "net/cast_transport_defines.h",
76 "net/cast_transport_sender.h", 76 "net/cast_transport_sender.h",
77 "net/cast_transport_sender_impl.cc", 77 "net/cast_transport_sender_impl.cc",
78 "net/cast_transport_sender_impl.h", 78 "net/cast_transport_sender_impl.h",
79 "net/pacing/paced_sender.cc", 79 "net/pacing/paced_sender.cc",
80 "net/pacing/paced_sender.h", 80 "net/pacing/paced_sender.h",
81 "net/rtcp/receiver_rtcp_event_subscriber.cc", 81 "net/rtcp/receiver_rtcp_event_subscriber.cc",
82 "net/rtcp/rtcp.cc", 82 "net/rtcp/receiver_rtcp_session.cc",
83 "net/rtcp/rtcp.h", 83 "net/rtcp/receiver_rtcp_session.h",
84 "net/rtcp/rtcp_builder.cc", 84 "net/rtcp/rtcp_builder.cc",
85 "net/rtcp/rtcp_builder.h", 85 "net/rtcp/rtcp_builder.h",
86 "net/rtcp/rtcp_defines.cc", 86 "net/rtcp/rtcp_defines.cc",
87 "net/rtcp/rtcp_defines.h", 87 "net/rtcp/rtcp_defines.h",
88 "net/rtcp/rtcp_utility.cc", 88 "net/rtcp/rtcp_utility.cc",
89 "net/rtcp/rtcp_utility.h", 89 "net/rtcp/rtcp_utility.h",
90 "net/rtcp/sender_rtcp_session.cc",
91 "net/rtcp/sender_rtcp_session.h",
90 "net/rtp/packet_storage.cc", 92 "net/rtp/packet_storage.cc",
91 "net/rtp/packet_storage.h", 93 "net/rtp/packet_storage.h",
92 "net/rtp/rtp_defines.cc", 94 "net/rtp/rtp_defines.cc",
93 "net/rtp/rtp_defines.h", 95 "net/rtp/rtp_defines.h",
94 "net/rtp/rtp_packetizer.cc", 96 "net/rtp/rtp_packetizer.cc",
95 "net/rtp/rtp_packetizer.h", 97 "net/rtp/rtp_packetizer.h",
96 "net/rtp/rtp_parser.cc", 98 "net/rtp/rtp_parser.cc",
97 "net/rtp/rtp_parser.h", 99 "net/rtp/rtp_parser.h",
98 "net/rtp/rtp_sender.cc", 100 "net/rtp/rtp_sender.cc",
99 "net/rtp/rtp_sender.h", 101 "net/rtp/rtp_sender.h",
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 deps = [ 550 deps = [
549 ":sender", 551 ":sender",
550 ] 552 ]
551 } 553 }
552 554
553 static_library("cast_receiver") { 555 static_library("cast_receiver") {
554 deps = [ 556 deps = [
555 ":receiver", 557 ":receiver",
556 ] 558 ]
557 } 559 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/cast.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698