Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: media/cast/cast_testing.gypi

Issue 308713005: Cast: Synthetic benchmark tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge + minor fix Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/cast/receiver/video_decoder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 {
127 # This is a target for the collection of cast development tools. 163 # This is a target for the collection of cast development tools.
128 # They are built on bots but not shipped. 164 # They are built on bots but not shipped.
129 'target_name': 'cast_tools', 165 'target_name': 'cast_tools',
130 'type': 'none', 166 'type': 'none',
131 'dependencies': [ 167 'dependencies': [
132 'cast_receiver_app', 168 'cast_receiver_app',
133 'cast_sender_app', 169 'cast_sender_app',
134 'udp_proxy', 170 'udp_proxy',
135 ], 171 ],
136 }, 172 },
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 'cast_test_utility', 267 'cast_test_utility',
232 '<(DEPTH)/base/base.gyp:base', 268 '<(DEPTH)/base/base.gyp:base',
233 '<(DEPTH)/media/media.gyp:media', 269 '<(DEPTH)/media/media.gyp:media',
234 ], 270 ],
235 'sources': [ 271 'sources': [
236 'test/utility/udp_proxy_main.cc', 272 'test/utility/udp_proxy_main.cc',
237 ], 273 ],
238 } 274 }
239 ], # targets 275 ], # targets
240 } 276 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/receiver/video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698