| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'proto_in_dir': 'logging/proto', | 72 'proto_in_dir': 'logging/proto', |
| 73 'proto_out_dir': 'media/cast/logging/proto', | 73 'proto_out_dir': 'media/cast/logging/proto', |
| 74 }, | 74 }, |
| 75 'includes': ['../../build/protoc.gypi'], | 75 'includes': ['../../build/protoc.gypi'], |
| 76 }, | 76 }, |
| 77 { | 77 { |
| 78 'target_name': 'cast_receiver', | 78 'target_name': 'cast_receiver', |
| 79 'type': 'static_library', | 79 'type': 'static_library', |
| 80 'include_dirs': [ | 80 'include_dirs': [ |
| 81 '<(DEPTH)/', | 81 '<(DEPTH)/', |
| 82 # TODO(miu): Remove WebRTC dependency (RtpHeader), and then these two deps: | |
| 83 '<(DEPTH)/third_party/', | |
| 84 '<(DEPTH)/third_party/webrtc/', | |
| 85 ], | 82 ], |
| 86 'dependencies': [ | 83 'dependencies': [ |
| 87 'cast_base', | 84 'cast_base', |
| 88 'cast_rtcp', | 85 'cast_rtcp', |
| 89 'cast_transport', | 86 'cast_transport', |
| 90 '<(DEPTH)/base/base.gyp:base', | 87 '<(DEPTH)/base/base.gyp:base', |
| 91 '<(DEPTH)/media/media.gyp:media', | 88 '<(DEPTH)/media/media.gyp:media', |
| 92 '<(DEPTH)/media/media.gyp:shared_memory_support', | 89 '<(DEPTH)/media/media.gyp:shared_memory_support', |
| 93 '<(DEPTH)/third_party/opus/opus.gyp:opus', | 90 '<(DEPTH)/third_party/opus/opus.gyp:opus', |
| 94 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', | 91 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 107 'framer/frame_buffer.cc', | 104 'framer/frame_buffer.cc', |
| 108 'framer/frame_buffer.h', | 105 'framer/frame_buffer.h', |
| 109 'framer/frame_id_map.cc', | 106 'framer/frame_id_map.cc', |
| 110 'framer/frame_id_map.h', | 107 'framer/frame_id_map.h', |
| 111 'framer/framer.cc', | 108 'framer/framer.cc', |
| 112 'framer/framer.h', | 109 'framer/framer.h', |
| 113 'rtp_receiver/receiver_stats.cc', | 110 'rtp_receiver/receiver_stats.cc', |
| 114 'rtp_receiver/receiver_stats.h', | 111 'rtp_receiver/receiver_stats.h', |
| 115 'rtp_receiver/rtp_receiver.cc', | 112 'rtp_receiver/rtp_receiver.cc', |
| 116 'rtp_receiver/rtp_receiver.h', | 113 'rtp_receiver/rtp_receiver.h', |
| 114 'rtp_receiver/rtp_receiver_defines.cc', |
| 115 'rtp_receiver/rtp_receiver_defines.h', |
| 117 'rtp_receiver/rtp_parser/rtp_parser.cc', | 116 'rtp_receiver/rtp_parser/rtp_parser.cc', |
| 118 'rtp_receiver/rtp_parser/rtp_parser.h', | 117 'rtp_receiver/rtp_parser/rtp_parser.h', |
| 119 'video_receiver/video_decoder.h', | 118 'video_receiver/video_decoder.h', |
| 120 'video_receiver/video_decoder.cc', | 119 'video_receiver/video_decoder.cc', |
| 121 'video_receiver/video_receiver.h', | 120 'video_receiver/video_receiver.h', |
| 122 'video_receiver/video_receiver.cc', | 121 'video_receiver/video_receiver.cc', |
| 123 ], # source | 122 ], # source |
| 124 }, | 123 }, |
| 125 { | 124 { |
| 126 'target_name': 'cast_rtcp', | 125 'target_name': 'cast_rtcp', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 'transport/transport_audio_sender.cc', | 219 'transport/transport_audio_sender.cc', |
| 221 'transport/transport_audio_sender.h', | 220 'transport/transport_audio_sender.h', |
| 222 'transport/transport_video_sender.cc', | 221 'transport/transport_video_sender.cc', |
| 223 'transport/transport_video_sender.h', | 222 'transport/transport_video_sender.h', |
| 224 'transport/utility/transport_encryption_handler.cc', | 223 'transport/utility/transport_encryption_handler.cc', |
| 225 'transport/utility/transport_encryption_handler.h', | 224 'transport/utility/transport_encryption_handler.h', |
| 226 ], # source | 225 ], # source |
| 227 }, | 226 }, |
| 228 ], | 227 ], |
| 229 } | 228 } |
| OLD | NEW |