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

Side by Side Diff: media/cast/BUILD.gn

Issue 547793002: Add lots of testonly annotations to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 3 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 | « jingle/BUILD.gn ('k') | mojo/common/test/BUILD.gn » ('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 component("cast") { 5 component("cast") {
6 deps = [ 6 deps = [
7 ":sender", 7 ":sender",
8 ":receiver", 8 ":receiver",
9 ] 9 ]
10 } 10 }
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 "//media", 162 "//media",
163 "//media:shared_memory_support", 163 "//media:shared_memory_support",
164 "//third_party/opus", 164 "//third_party/opus",
165 # TODO(hclam): libvpx support. 165 # TODO(hclam): libvpx support.
166 # "//third_party/libvpx", 166 # "//third_party/libvpx",
167 "//ui/gfx", 167 "//ui/gfx",
168 ] 168 ]
169 } 169 }
170 170
171 source_set("test_support") { 171 source_set("test_support") {
172 testonly = true
172 sources = [ 173 sources = [
173 # TODO(hclam): FFmpeg. 174 # TODO(hclam): FFmpeg.
174 # "test/fake_media_source.cc", 175 # "test/fake_media_source.cc",
175 # "test/fake_media_source.h", 176 # "test/fake_media_source.h",
176 "test/fake_single_thread_task_runner.cc", 177 "test/fake_single_thread_task_runner.cc",
177 "test/fake_single_thread_task_runner.h", 178 "test/fake_single_thread_task_runner.h",
178 "test/skewed_single_thread_task_runner.cc", 179 "test/skewed_single_thread_task_runner.cc",
179 "test/skewed_single_thread_task_runner.h", 180 "test/skewed_single_thread_task_runner.h",
180 "test/skewed_tick_clock.cc", 181 "test/skewed_tick_clock.cc",
181 "test/skewed_tick_clock.h", 182 "test/skewed_tick_clock.h",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 ":sender", 277 ":sender",
277 ":test_support", 278 ":test_support",
278 "//base/test:run_all_unittests", 279 "//base/test:run_all_unittests",
279 "//base/test:test_support", 280 "//base/test:test_support",
280 "//testing/gmock", 281 "//testing/gmock",
281 "//testing/gtest", 282 "//testing/gtest",
282 ] 283 ]
283 } 284 }
284 285
285 executable("generate_barcode_video") { 286 executable("generate_barcode_video") {
287 testonly = true
286 sources = [ 288 sources = [
287 "test/utility/generate_barcode_video.cc", 289 "test/utility/generate_barcode_video.cc",
288 ] 290 ]
289 291
290 deps = [ 292 deps = [
291 ":test_support", 293 ":test_support",
292 "//base", 294 "//base",
293 "//media", 295 "//media",
294 ] 296 ]
295 } 297 }
296 298
297 executable("generate_timecode_audio") { 299 executable("generate_timecode_audio") {
300 testonly = true
298 sources = [ 301 sources = [
299 "test/utility/generate_timecode_audio.cc", 302 "test/utility/generate_timecode_audio.cc",
300 ] 303 ]
301 304
302 deps = [ 305 deps = [
303 ":test_support", 306 ":test_support",
304 "//base", 307 "//base",
305 "//media", 308 "//media",
306 ] 309 ]
307 } 310 }
308 311
309 executable("udp_proxy") { 312 executable("udp_proxy") {
313 testonly = true
310 sources = [ 314 sources = [
311 "test/utility/udp_proxy_main.cc", 315 "test/utility/udp_proxy_main.cc",
312 ] 316 ]
313 317
314 deps = [ 318 deps = [
315 ":test_support", 319 ":test_support",
316 "//base", 320 "//base",
317 "//net", 321 "//net",
318 ] 322 ]
319 } 323 }
OLDNEW
« no previous file with comments | « jingle/BUILD.gn ('k') | mojo/common/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698