| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'cast_test_utility', | 8 'target_name': 'cast_test_utility', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 'transport/rtp_sender/rtp_packetizer/rtp_packetizer_unittest.cc', | 117 'transport/rtp_sender/rtp_packetizer/rtp_packetizer_unittest.cc', |
| 118 'transport/rtp_sender/rtp_packetizer/test/rtp_header_parser.cc', | 118 'transport/rtp_sender/rtp_packetizer/test/rtp_header_parser.cc', |
| 119 'transport/rtp_sender/rtp_packetizer/test/rtp_header_parser.h', | 119 'transport/rtp_sender/rtp_packetizer/test/rtp_header_parser.h', |
| 120 'transport/transport/udp_transport_unittest.cc', | 120 'transport/transport/udp_transport_unittest.cc', |
| 121 'video_sender/external_video_encoder_unittest.cc', | 121 'video_sender/external_video_encoder_unittest.cc', |
| 122 'video_sender/video_encoder_impl_unittest.cc', | 122 'video_sender/video_encoder_impl_unittest.cc', |
| 123 'video_sender/video_sender_unittest.cc', | 123 'video_sender/video_sender_unittest.cc', |
| 124 ], # source | 124 ], # source |
| 125 }, | 125 }, |
| 126 { | 126 { |
| 127 'target_name': 'cast_benchmarks', | |
| 128 'type': '<(gtest_target_type)', | |
| 129 'include_dirs': [ | |
| 130 '<(DEPTH)/', | |
| 131 ], | |
| 132 'dependencies': [ | |
| 133 'cast_base', | |
| 134 'cast_receiver', | |
| 135 'cast_rtcp', | |
| 136 'cast_sender', | |
| 137 'cast_test_utility', | |
| 138 'cast_transport', | |
| 139 '<(DEPTH)/base/base.gyp:test_support_base', | |
| 140 '<(DEPTH)/net/net.gyp:net', | |
| 141 '<(DEPTH)/testing/gtest.gyp:gtest', | |
| 142 ], | |
| 143 'sources': [ | |
| 144 'test/cast_benchmarks.cc', | |
| 145 'test/fake_single_thread_task_runner.cc', | |
| 146 'test/fake_single_thread_task_runner.h', | |
| 147 'test/fake_video_encode_accelerator.cc', | |
| 148 'test/fake_video_encode_accelerator.h', | |
| 149 'test/utility/test_util.cc', | |
| 150 'test/utility/test_util.h', | |
| 151 ], # source | |
| 152 'conditions': [ | |
| 153 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"', | |
| 154 { | |
| 155 'dependencies': [ | |
| 156 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | |
| 157 ], | |
| 158 } | |
| 159 ], | |
| 160 ], | |
| 161 }, | |
| 162 { | |
| 163 # This is a target for the collection of cast development tools. | 127 # This is a target for the collection of cast development tools. |
| 164 # They are built on bots but not shipped. | 128 # They are built on bots but not shipped. |
| 165 'target_name': 'cast_tools', | 129 'target_name': 'cast_tools', |
| 166 'type': 'none', | 130 'type': 'none', |
| 167 'dependencies': [ | 131 'dependencies': [ |
| 168 'cast_receiver_app', | 132 'cast_receiver_app', |
| 169 'cast_sender_app', | 133 'cast_sender_app', |
| 170 'udp_proxy', | 134 'udp_proxy', |
| 171 ], | 135 ], |
| 172 }, | 136 }, |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 'cast_test_utility', | 231 'cast_test_utility', |
| 268 '<(DEPTH)/base/base.gyp:base', | 232 '<(DEPTH)/base/base.gyp:base', |
| 269 '<(DEPTH)/media/media.gyp:media', | 233 '<(DEPTH)/media/media.gyp:media', |
| 270 ], | 234 ], |
| 271 'sources': [ | 235 'sources': [ |
| 272 'test/utility/udp_proxy_main.cc', | 236 'test/utility/udp_proxy_main.cc', |
| 273 ], | 237 ], |
| 274 } | 238 } |
| 275 ], # targets | 239 ], # targets |
| 276 } | 240 } |
| OLD | NEW |