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

Side by Side Diff: chromecast/BUILD.gn

Issue 1154383006: Adding crash utilities to chromecast/crash. (Closed) Base URL: https://eureka-internal.googlesource.com/chromium/src@master
Patch Set: Linux-specific utils moved to linux/ Created 5 years, 6 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("//chromecast/chromecast.gni")
6 6
7 config("config") { 7 config("config") {
8 defines = [] 8 defines = []
9 9
10 if (use_playready) { 10 if (use_playready) {
11 defines += [ "PLAYREADY_CDM_AVAILABLE" ] 11 defines += [ "PLAYREADY_CDM_AVAILABLE" ]
12 } 12 }
13 } 13 }
14 14
15 component("chromecast") { 15 component("chromecast") {
16 deps = [ 16 deps = [
17 "//chromecast/base", 17 "//chromecast/base",
18 "//chromecast/base/metrics", 18 "//chromecast/base/metrics",
19 "//chromecast/crash",
19 "//chromecast/media", 20 "//chromecast/media",
20 ] 21 ]
21 } 22 }
23
24 group("chromecast_unittests") {
25 testonly = true
26
27 deps = [
28 "//chromecast/base:cast_base_unittests",
29 "//chromecast/crash:cast_crash_unittests",
30 "//chromecast/media:cast_media_unittests",
31 ]
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698