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

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: Address comments. 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
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/base", 10 "//chromecast/media/base",
10 "//chromecast/media/cdm", 11 "//chromecast/media/cdm",
11 "//chromecast/media/cma", 12 "//chromecast/media/cma",
12 ] 13 ]
13 } 14 }
14 15
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "//chromecast/base/metrics:test_support", 51 "//chromecast/base/metrics:test_support",
51 "//chromecast/public", 52 "//chromecast/public",
52 "//media", 53 "//media",
53 "//media/base:test_support", 54 "//media/base:test_support",
54 "//testing/gmock", 55 "//testing/gmock",
55 "//testing/gtest", 56 "//testing/gtest",
56 "//ui/gfx/geometry", 57 "//ui/gfx/geometry",
57 ] 58 ]
58 } 59 }
59 60
61 group("libcast_media") {
62 if (use_default_cast_media) {
63 public_deps = [
64 "//chromecast/media/base:libcast_media_default",
65 ]
66 } else {
67 public_deps = [
68 "$libcast_media_path:libcast_media_1.0",
69 ]
70 }
71 }
72
60 # TODO(gunsch): delete this target once Chromecast M44/earlier is obsolete. 73 # TODO(gunsch): delete this target once Chromecast M44/earlier is obsolete.
61 # See: b/21639416 74 # See: b/21639416
62 shared_library("libffmpegsumo") { 75 shared_library("libffmpegsumo") {
63 output_name = "libffmpegsumo" 76 output_name = "libffmpegsumo"
64 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698