| OLD | NEW |
| 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 Loading... |
| 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 deps = [ | 546 deps = [ |
| 545 ":sender", | 547 ":sender", |
| 546 ] | 548 ] |
| 547 } | 549 } |
| 548 | 550 |
| 549 static_library("cast_receiver") { | 551 static_library("cast_receiver") { |
| 550 deps = [ | 552 deps = [ |
| 551 ":receiver", | 553 ":receiver", |
| 552 ] | 554 ] |
| 553 } | 555 } |
| OLD | NEW |