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

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: Refactored crash dependencies 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
« no previous file with comments | « no previous file | chromecast/app/BUILD.gn » ('j') | chromecast/chromecast.gyp » ('J')
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 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 "//chromecast/app:cast_shell_unittests",
slan 2015/06/22 21:24:54 Lexigraphical ordering.
slan 2015/06/22 22:32:25 Done.
32 ]
33 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/app/BUILD.gn » ('j') | chromecast/chromecast.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698