| 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': [ |
| 11 ['include_tests==1', { | 11 ['include_tests==1', { |
| 12 'includes': [ 'cast_testing.gypi' ] | 12 'includes': [ 'cast_testing.gypi' ] |
| 13 }], | 13 }], |
| 14 ], | 14 ], |
| 15 'targets': [ | 15 'targets': [ |
| 16 { | 16 { |
| 17 # GN version: //media/cast:common |
| 17 'target_name': 'cast_base', | 18 'target_name': 'cast_base', |
| 18 'type': 'static_library', | 19 'type': 'static_library', |
| 19 'include_dirs': [ | 20 'include_dirs': [ |
| 20 '<(DEPTH)/', | 21 '<(DEPTH)/', |
| 21 ], | 22 ], |
| 22 'dependencies': [ | 23 'dependencies': [ |
| 23 'cast_logging_proto', | 24 'cast_logging_proto', |
| 24 '<(DEPTH)/base/base.gyp:base', | 25 '<(DEPTH)/base/base.gyp:base', |
| 25 '<(DEPTH)/crypto/crypto.gyp:crypto', | 26 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 26 '<(DEPTH)/net/net.gyp:net', | 27 '<(DEPTH)/net/net.gyp:net', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 'logging/proto/proto_utils.cc', | 74 'logging/proto/proto_utils.cc', |
| 74 'logging/proto/raw_events.proto', | 75 'logging/proto/raw_events.proto', |
| 75 ], | 76 ], |
| 76 'variables': { | 77 'variables': { |
| 77 'proto_in_dir': 'logging/proto', | 78 'proto_in_dir': 'logging/proto', |
| 78 'proto_out_dir': 'media/cast/logging/proto', | 79 'proto_out_dir': 'media/cast/logging/proto', |
| 79 }, | 80 }, |
| 80 'includes': ['../../build/protoc.gypi'], | 81 'includes': ['../../build/protoc.gypi'], |
| 81 }, | 82 }, |
| 82 { | 83 { |
| 84 # GN version: //media/cast:receiver |
| 83 'target_name': 'cast_receiver', | 85 'target_name': 'cast_receiver', |
| 84 'type': 'static_library', | 86 'type': 'static_library', |
| 85 'include_dirs': [ | 87 'include_dirs': [ |
| 86 '<(DEPTH)/', | 88 '<(DEPTH)/', |
| 87 ], | 89 ], |
| 88 'dependencies': [ | 90 'dependencies': [ |
| 89 'cast_base', | 91 'cast_base', |
| 90 'cast_net', | 92 'cast_net', |
| 91 '<(DEPTH)/base/base.gyp:base', | 93 '<(DEPTH)/base/base.gyp:base', |
| 92 '<(DEPTH)/media/media.gyp:media', | 94 '<(DEPTH)/media/media.gyp:media', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 115 'net/rtp/framer.h', | 117 'net/rtp/framer.h', |
| 116 'net/rtp/receiver_stats.cc', | 118 'net/rtp/receiver_stats.cc', |
| 117 'net/rtp/receiver_stats.h', | 119 'net/rtp/receiver_stats.h', |
| 118 'net/rtp/rtp_parser.cc', | 120 'net/rtp/rtp_parser.cc', |
| 119 'net/rtp/rtp_parser.h', | 121 'net/rtp/rtp_parser.h', |
| 120 'net/rtp/rtp_receiver_defines.cc', | 122 'net/rtp/rtp_receiver_defines.cc', |
| 121 'net/rtp/rtp_receiver_defines.h', | 123 'net/rtp/rtp_receiver_defines.h', |
| 122 ], # source | 124 ], # source |
| 123 }, | 125 }, |
| 124 { | 126 { |
| 127 # GN version: //media/cast:sender |
| 125 'target_name': 'cast_sender', | 128 'target_name': 'cast_sender', |
| 126 'type': 'static_library', | 129 'type': 'static_library', |
| 127 'include_dirs': [ | 130 'include_dirs': [ |
| 128 '<(DEPTH)/', | 131 '<(DEPTH)/', |
| 129 ], | 132 ], |
| 130 'dependencies': [ | 133 'dependencies': [ |
| 131 'cast_base', | 134 'cast_base', |
| 132 'cast_net', | 135 'cast_net', |
| 133 '<(DEPTH)/media/media.gyp:media', | 136 '<(DEPTH)/media/media.gyp:media', |
| 134 '<(DEPTH)/media/media.gyp:shared_memory_support', | 137 '<(DEPTH)/media/media.gyp:shared_memory_support', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 157 'sender/video_encoder.h', | 160 'sender/video_encoder.h', |
| 158 'sender/video_encoder_impl.h', | 161 'sender/video_encoder_impl.h', |
| 159 'sender/video_encoder_impl.cc', | 162 'sender/video_encoder_impl.cc', |
| 160 'sender/video_sender.h', | 163 'sender/video_sender.h', |
| 161 'sender/video_sender.cc', | 164 'sender/video_sender.cc', |
| 162 'sender/vp8_encoder.cc', | 165 'sender/vp8_encoder.cc', |
| 163 'sender/vp8_encoder.h', | 166 'sender/vp8_encoder.h', |
| 164 ], # source | 167 ], # source |
| 165 }, | 168 }, |
| 166 { | 169 { |
| 170 # GN version: //media/cast:net |
| 167 'target_name': 'cast_net', | 171 'target_name': 'cast_net', |
| 168 'type': 'static_library', | 172 'type': 'static_library', |
| 169 'include_dirs': [ | 173 'include_dirs': [ |
| 170 '<(DEPTH)/', | 174 '<(DEPTH)/', |
| 171 ], | 175 ], |
| 172 'dependencies': [ | 176 'dependencies': [ |
| 173 'cast_base', | 177 'cast_base', |
| 174 '<(DEPTH)/base/base.gyp:base', | 178 '<(DEPTH)/base/base.gyp:base', |
| 175 '<(DEPTH)/net/net.gyp:net', | 179 '<(DEPTH)/net/net.gyp:net', |
| 176 ], | 180 ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 199 'net/rtp/rtp_packetizer.cc', | 203 'net/rtp/rtp_packetizer.cc', |
| 200 'net/rtp/rtp_packetizer.h', | 204 'net/rtp/rtp_packetizer.h', |
| 201 'net/rtp/rtp_sender.cc', | 205 'net/rtp/rtp_sender.cc', |
| 202 'net/rtp/rtp_sender.h', | 206 'net/rtp/rtp_sender.h', |
| 203 'net/udp_transport.cc', | 207 'net/udp_transport.cc', |
| 204 'net/udp_transport.h', | 208 'net/udp_transport.h', |
| 205 ], # source | 209 ], # source |
| 206 }, | 210 }, |
| 207 ], | 211 ], |
| 208 } | 212 } |
| OLD | NEW |