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

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

Issue 975123003: Add remaining trivial targets for the Linux GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix other debug/component woes Created 5 years, 9 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 | « gpu/tools/tools.gyp ('k') | skia/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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("cast") { 7 component("cast") {
8 deps = [ 8 deps = [
9 ":sender", 9 ":sender",
10 ":receiver", 10 ":receiver",
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 sources = [ 369 sources = [
370 "test/utility/udp_proxy_main.cc", 370 "test/utility/udp_proxy_main.cc",
371 ] 371 ]
372 372
373 deps = [ 373 deps = [
374 ":test_support", 374 ":test_support",
375 "//base", 375 "//base",
376 "//net", 376 "//net",
377 ] 377 ]
378 } 378 }
379
380 if (is_linux && !is_chromeos) {
381 # TODO(GYP): Figure out which of these work and are needed on other platforms.
382 test("cast_benchmarks") {
383 sources = [
384 "test/cast_benchmarks.cc",
385 "test/fake_single_thread_task_runner.cc",
386 "test/fake_single_thread_task_runner.h",
387 "test/utility/test_util.cc",
388 "test/utility/test_util.h",
389 ]
390
391 deps = [
392 ":common",
393 ":net",
394 ":receiver",
395 ":sender",
396 ":test_support",
397 "//base/test:test_support",
398 "//net",
399 "//testing/gtest",
400 ]
401 }
402
403 test("tap_proxy") {
404 sources = [
405 "test/utility/tap_proxy.cc",
406 ]
407
408 deps = [
409 ":test_support",
410 "//base",
411 "//media",
412 ]
413 }
414 }
OLDNEW
« no previous file with comments | « gpu/tools/tools.gyp ('k') | skia/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698