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

Side by Side Diff: chromecast/app/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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//testing/test.gni")
6
7 component("cast_crash_client") {
8 sources = [
9 "linux/cast_crash_reporter_client.cc",
10 "linux/cast_crash_reporter_client.h",
11 ]
12
13 deps = [
14 "//chromecast/crash",
15 "//components/crash/app",
16 "//content/public/common",
17 ]
18
19 configs += [ "//chromecast:config" ]
20 }
21
22 test("cast_shell_unittests") {
23 sources = [
24 "cast_crash_reporter_client_unittests.cc",
25 ]
26
27 deps = [
28 ":cast_crash_client",
29 "//base/test:run_all_unittests",
30 "//testing/gtest",
31 ]
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698