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

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

Issue 1635913002: [chromecast] Statically link libcast_media_default for media unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//chromecast/chromecast.gni") 5 import("//chromecast/chromecast.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 group("media") { 8 group("media") {
9 public_deps = [ 9 public_deps = [
10 "//chromecast/media/audio", 10 "//chromecast/media/audio",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "//chromecast/media/cma/ipc", 50 "//chromecast/media/cma/ipc",
51 "//chromecast/media/cma/ipc_streamer", 51 "//chromecast/media/cma/ipc_streamer",
52 "//chromecast/media/cma/pipeline", 52 "//chromecast/media/cma/pipeline",
53 "//chromecast/public", 53 "//chromecast/public",
54 "//media", 54 "//media",
55 "//media/base:test_support", 55 "//media/base:test_support",
56 "//testing/gmock", 56 "//testing/gmock",
57 "//testing/gtest", 57 "//testing/gtest",
58 "//ui/gfx/geometry", 58 "//ui/gfx/geometry",
59 ] 59 ]
60
61 if (chromecast_branding == "public") {
62 # Link default libcast_media_1.0 statically not to link dummy one
63 # dynamically for public unittests.
64 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ]
65 }
60 } 66 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698