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

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

Issue 1345013002: Add is_chromecast to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Rebase + ui changes. Created 5 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 | « chromecast/graphics/BUILD.gn ('k') | chromecast/media/base/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 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("//testing/test.gni") 6 import("//testing/test.gni")
6 7
7 group("media") { 8 group("media") {
8 deps = [ 9 deps = [
9 "//chromecast/media/audio", 10 "//chromecast/media/audio",
10 "//chromecast/media/base", 11 "//chromecast/media/base",
11 "//chromecast/media/cdm", 12 "//chromecast/media/cdm",
12 "//chromecast/media/cma", 13 "//chromecast/media/cma",
13 ] 14 ]
14 } 15 }
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 "//chromecast/base/metrics:test_support", 53 "//chromecast/base/metrics:test_support",
53 "//chromecast/public", 54 "//chromecast/public",
54 "//media", 55 "//media",
55 "//media/base:test_support", 56 "//media/base:test_support",
56 "//testing/gmock", 57 "//testing/gmock",
57 "//testing/gtest", 58 "//testing/gtest",
58 "//ui/gfx/geometry", 59 "//ui/gfx/geometry",
59 ] 60 ]
60 } 61 }
61 62
63 group("libcast_media") {
64 if (use_default_cast_media) {
65 public_deps = [
66 "//chromecast/media/base:libcast_media_default",
67 ]
68 } else {
69 public_deps = [
70 "$libcast_media_path:libcast_media_1.0",
71 ]
72 }
73 }
74
62 # TODO(slan): delete this target once Chromecast M44/earlier is obsolete. 75 # TODO(slan): delete this target once Chromecast M44/earlier is obsolete.
63 # See: b/21639416 76 # See: b/21639416
64 shared_library("libffmpegsumo") { 77 shared_library("libffmpegsumo") {
65 output_name = "libffmpegsumo" 78 output_name = "libffmpegsumo"
66 } 79 }
OLDNEW
« no previous file with comments | « chromecast/graphics/BUILD.gn ('k') | chromecast/media/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698