| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'include_tests%': 1, | 7 'include_tests%': 1, |
| 8 'chromium_code': 1, | 8 'chromium_code': 1, |
| 9 }, | 9 }, |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 'cast_rtcp', | 92 'cast_rtcp', |
| 93 'cast_transport', | 93 'cast_transport', |
| 94 '<(DEPTH)/base/base.gyp:base', | 94 '<(DEPTH)/base/base.gyp:base', |
| 95 '<(DEPTH)/media/media.gyp:media', | 95 '<(DEPTH)/media/media.gyp:media', |
| 96 '<(DEPTH)/media/media.gyp:shared_memory_support', | 96 '<(DEPTH)/media/media.gyp:shared_memory_support', |
| 97 '<(DEPTH)/third_party/opus/opus.gyp:opus', | 97 '<(DEPTH)/third_party/opus/opus.gyp:opus', |
| 98 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', | 98 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', |
| 99 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 99 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 100 ], | 100 ], |
| 101 'sources': [ | 101 'sources': [ |
| 102 'audio_receiver/audio_decoder.h', | |
| 103 'audio_receiver/audio_decoder.cc', | |
| 104 'audio_receiver/audio_receiver.h', | |
| 105 'audio_receiver/audio_receiver.cc', | |
| 106 'cast_receiver.h', | 102 'cast_receiver.h', |
| 107 'cast_receiver_impl.cc', | |
| 108 'cast_receiver_impl.h', | |
| 109 'framer/cast_message_builder.cc', | 103 'framer/cast_message_builder.cc', |
| 110 'framer/cast_message_builder.h', | 104 'framer/cast_message_builder.h', |
| 111 'framer/frame_buffer.cc', | 105 'framer/frame_buffer.cc', |
| 112 'framer/frame_buffer.h', | 106 'framer/frame_buffer.h', |
| 113 'framer/frame_id_map.cc', | 107 'framer/frame_id_map.cc', |
| 114 'framer/frame_id_map.h', | 108 'framer/frame_id_map.h', |
| 115 'framer/framer.cc', | 109 'framer/framer.cc', |
| 116 'framer/framer.h', | 110 'framer/framer.h', |
| 111 'receiver/audio_decoder.cc', |
| 112 'receiver/audio_decoder.h', |
| 113 'receiver/cast_receiver_impl.cc', |
| 114 'receiver/cast_receiver_impl.h', |
| 115 'receiver/frame_receiver.cc', |
| 116 'receiver/frame_receiver.h', |
| 117 'receiver/video_decoder.cc', |
| 118 'receiver/video_decoder.h', |
| 117 'rtp_receiver/receiver_stats.cc', | 119 'rtp_receiver/receiver_stats.cc', |
| 118 'rtp_receiver/receiver_stats.h', | 120 'rtp_receiver/receiver_stats.h', |
| 119 'rtp_receiver/rtp_receiver.cc', | |
| 120 'rtp_receiver/rtp_receiver.h', | |
| 121 'rtp_receiver/rtp_receiver_defines.cc', | 121 'rtp_receiver/rtp_receiver_defines.cc', |
| 122 'rtp_receiver/rtp_receiver_defines.h', | 122 'rtp_receiver/rtp_receiver_defines.h', |
| 123 'rtp_receiver/rtp_parser/rtp_parser.cc', | 123 'rtp_receiver/rtp_parser/rtp_parser.cc', |
| 124 'rtp_receiver/rtp_parser/rtp_parser.h', | 124 'rtp_receiver/rtp_parser/rtp_parser.h', |
| 125 'video_receiver/video_decoder.h', | |
| 126 'video_receiver/video_decoder.cc', | |
| 127 'video_receiver/video_receiver.h', | |
| 128 'video_receiver/video_receiver.cc', | |
| 129 ], # source | 125 ], # source |
| 130 }, | 126 }, |
| 131 { | 127 { |
| 132 'target_name': 'cast_rtcp', | 128 'target_name': 'cast_rtcp', |
| 133 'type': 'static_library', | 129 'type': 'static_library', |
| 134 'include_dirs': [ | 130 'include_dirs': [ |
| 135 '<(DEPTH)/', | 131 '<(DEPTH)/', |
| 136 ], | 132 ], |
| 137 'dependencies': [ | 133 'dependencies': [ |
| 138 'cast_base', | 134 'cast_base', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 'transport/transport_audio_sender.cc', | 220 'transport/transport_audio_sender.cc', |
| 225 'transport/transport_audio_sender.h', | 221 'transport/transport_audio_sender.h', |
| 226 'transport/transport_video_sender.cc', | 222 'transport/transport_video_sender.cc', |
| 227 'transport/transport_video_sender.h', | 223 'transport/transport_video_sender.h', |
| 228 'transport/utility/transport_encryption_handler.cc', | 224 'transport/utility/transport_encryption_handler.cc', |
| 229 'transport/utility/transport_encryption_handler.h', | 225 'transport/utility/transport_encryption_handler.h', |
| 230 ], # source | 226 ], # source |
| 231 }, | 227 }, |
| 232 ], | 228 ], |
| 233 } | 229 } |
| OLD | NEW |