Chromium Code Reviews| 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 'target_name': 'cast_base', | 17 'target_name': 'cast_base', |
| 18 'type': 'static_library', | 18 'type': 'static_library', |
| 19 'include_dirs': [ | 19 'include_dirs': [ |
| 20 '<(DEPTH)/', | 20 '<(DEPTH)/', |
| 21 ], | 21 ], |
| 22 'dependencies': [ | 22 'dependencies': [ |
| 23 'cast_logging_proto', | 23 'cast_logging_proto', |
| 24 '<(DEPTH)/base/base.gyp:base', | 24 '<(DEPTH)/base/base.gyp:base', |
| 25 '<(DEPTH)/crypto/crypto.gyp:crypto', | |
| 25 '<(DEPTH)/net/net.gyp:net', | 26 '<(DEPTH)/net/net.gyp:net', |
| 26 ], | 27 ], |
| 27 'export_dependent_settings': [ | 28 'export_dependent_settings': [ |
| 28 'cast_logging_proto', | 29 'cast_logging_proto', |
| 29 ], | 30 ], |
| 30 'sources': [ | 31 'sources': [ |
| 31 'cast_config.cc', | 32 'cast_config.cc', |
| 32 'cast_config.h', | 33 'cast_config.h', |
| 33 'cast_defines.h', | 34 'cast_defines.h', |
| 34 'cast_environment.cc', | 35 'cast_environment.cc', |
| 35 'cast_environment.h', | 36 'cast_environment.h', |
| 36 'base/clock_drift_smoother.cc', | 37 'common/clock_drift_smoother.cc', |
| 37 'base/clock_drift_smoother.h', | 38 'common/clock_drift_smoother.h', |
| 39 'common/transport_encryption_handler.cc', | |
| 40 'common/transport_encryption_handler.h', | |
| 38 'logging/encoding_event_subscriber.cc', | 41 'logging/encoding_event_subscriber.cc', |
| 39 'logging/encoding_event_subscriber.h', | 42 'logging/encoding_event_subscriber.h', |
| 40 'logging/log_deserializer.cc', | 43 'logging/log_deserializer.cc', |
| 41 'logging/log_deserializer.h', | 44 'logging/log_deserializer.h', |
| 42 'logging/log_serializer.cc', | 45 'logging/log_serializer.cc', |
| 43 'logging/log_serializer.h', | 46 'logging/log_serializer.h', |
| 44 'logging/logging_defines.cc', | 47 'logging/logging_defines.cc', |
| 45 'logging/logging_defines.h', | 48 'logging/logging_defines.h', |
| 46 'logging/logging_impl.cc', | 49 'logging/logging_impl.cc', |
| 47 'logging/logging_impl.h', | 50 'logging/logging_impl.h', |
| 48 'logging/logging_raw.cc', | 51 'logging/logging_raw.cc', |
| 49 'logging/logging_raw.h', | 52 'logging/logging_raw.h', |
| 50 'logging/raw_event_subscriber.h', | 53 'logging/raw_event_subscriber.h', |
| 51 'logging/raw_event_subscriber_bundle.cc', | 54 'logging/raw_event_subscriber_bundle.cc', |
| 52 'logging/raw_event_subscriber_bundle.h', | 55 'logging/raw_event_subscriber_bundle.h', |
| 53 'logging/receiver_time_offset_estimator.h', | 56 'logging/receiver_time_offset_estimator.h', |
| 54 'logging/receiver_time_offset_estimator_impl.cc', | 57 'logging/receiver_time_offset_estimator_impl.cc', |
| 55 'logging/receiver_time_offset_estimator_impl.h', | 58 'logging/receiver_time_offset_estimator_impl.h', |
| 56 'logging/simple_event_subscriber.cc', | 59 'logging/simple_event_subscriber.cc', |
| 57 'logging/simple_event_subscriber.h', | 60 'logging/simple_event_subscriber.h', |
| 58 'logging/stats_event_subscriber.cc', | 61 'logging/stats_event_subscriber.cc', |
| 59 'logging/stats_event_subscriber.h', | 62 'logging/stats_event_subscriber.h', |
| 60 'rtp_timestamp_helper.cc', | 63 'rtp_timestamp_helper.cc', |
| 61 'rtp_timestamp_helper.h', | 64 'rtp_timestamp_helper.h', |
| 62 'transport/cast_transport_config.cc', | |
|
miu
2014/07/11 01:19:36
Does everything still link with cast_transport_def
Alpha Left Google
2014/07/11 18:11:26
Yes it does. It's weird these files are in this ta
| |
| 63 'transport/cast_transport_config.h', | |
| 64 'transport/cast_transport_defines.h', | |
| 65 'transport/cast_transport_sender.h', | |
| 66 ], # source | 65 ], # source |
| 67 }, | 66 }, |
| 68 { | 67 { |
| 69 # GN version: //media/cast/logging/proto | 68 # GN version: //media/cast/logging/proto |
| 70 'target_name': 'cast_logging_proto', | 69 'target_name': 'cast_logging_proto', |
| 71 'type': 'static_library', | 70 'type': 'static_library', |
| 72 'include_dirs': [ | 71 'include_dirs': [ |
| 73 '<(DEPTH)/', | 72 '<(DEPTH)/', |
| 74 ], | 73 ], |
| 75 'sources': [ | 74 'sources': [ |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 193 }, | 192 }, |
| 194 { | 193 { |
| 195 'target_name': 'cast_transport', | 194 'target_name': 'cast_transport', |
| 196 'type': 'static_library', | 195 'type': 'static_library', |
| 197 'include_dirs': [ | 196 'include_dirs': [ |
| 198 '<(DEPTH)/', | 197 '<(DEPTH)/', |
| 199 ], | 198 ], |
| 200 'dependencies': [ | 199 'dependencies': [ |
| 201 'cast_base', | 200 'cast_base', |
| 202 '<(DEPTH)/base/base.gyp:base', | 201 '<(DEPTH)/base/base.gyp:base', |
| 203 '<(DEPTH)/crypto/crypto.gyp:crypto', | |
| 204 '<(DEPTH)/net/net.gyp:net', | 202 '<(DEPTH)/net/net.gyp:net', |
| 205 ], | 203 ], |
| 206 'sources': [ | 204 'sources': [ |
| 205 'transport/cast_transport_config.cc', | |
| 206 'transport/cast_transport_config.h', | |
| 207 'transport/cast_transport_defines.h', | |
| 208 'transport/cast_transport_sender.h', | |
| 207 'transport/cast_transport_sender_impl.cc', | 209 'transport/cast_transport_sender_impl.cc', |
| 208 'transport/cast_transport_sender_impl.h', | 210 'transport/cast_transport_sender_impl.h', |
| 209 'transport/pacing/paced_sender.cc', | 211 'transport/pacing/paced_sender.cc', |
| 210 'transport/pacing/paced_sender.h', | 212 'transport/pacing/paced_sender.h', |
| 211 'transport/rtcp/rtcp_builder.cc', | 213 'transport/rtcp/rtcp_builder.cc', |
| 212 'transport/rtcp/rtcp_builder.h', | 214 'transport/rtcp/rtcp_builder.h', |
| 213 'transport/rtp_sender/packet_storage/packet_storage.cc', | 215 'transport/rtp/packet_storage.cc', |
| 214 'transport/rtp_sender/packet_storage/packet_storage.h', | 216 'transport/rtp/packet_storage.h', |
| 215 'transport/rtp_sender/rtp_packetizer/rtp_packetizer.cc', | 217 'transport/rtp/rtp_packetizer.cc', |
| 216 'transport/rtp_sender/rtp_packetizer/rtp_packetizer.h', | 218 'transport/rtp/rtp_packetizer.h', |
| 217 'transport/rtp_sender/rtp_sender.cc', | 219 'transport/rtp/rtp_sender.cc', |
| 218 'transport/rtp_sender/rtp_sender.h', | 220 'transport/rtp/rtp_sender.h', |
| 219 'transport/transport/udp_transport.cc', | 221 'transport/udp_transport.cc', |
| 220 'transport/transport/udp_transport.h', | 222 'transport/udp_transport.h', |
| 221 'transport/utility/transport_encryption_handler.cc', | |
| 222 'transport/utility/transport_encryption_handler.h', | |
| 223 ], # source | 223 ], # source |
| 224 }, | 224 }, |
| 225 ], | 225 ], |
| 226 } | 226 } |
| OLD | NEW |