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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chromecast/app/BUILD.gn
diff --git a/chromecast/app/BUILD.gn b/chromecast/app/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..2b6a72368c40b94a60a6990199089dccfc64a047
--- /dev/null
+++ b/chromecast/app/BUILD.gn
@@ -0,0 +1,32 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//testing/test.gni")
+
+component("cast_crash_client") {
+ sources = [
+ "linux/cast_crash_reporter_client.cc",
+ "linux/cast_crash_reporter_client.h",
+ ]
+
+ deps = [
+ "//chromecast/crash",
+ "//components/crash/app",
+ "//content/public/common",
+ ]
+
+ configs += [ "//chromecast:config" ]
+}
+
+test("cast_shell_unittests") {
+ sources = [
+ "cast_crash_reporter_client_unittests.cc",
+ ]
+
+ deps = [
+ ":cast_crash_client",
+ "//base/test:run_all_unittests",
+ "//testing/gtest",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698