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

Unified Diff: components/crash/core/common/BUILD.gn

Issue 1481933002: Move crash keys for command-line switches to components/crash so they can be set (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@installer_crash_keys
Patch Set: typedef -> using, %lu -> PRIuS Created 5 years, 1 month 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/crash/core/common/crash_keys.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/core/common/BUILD.gn
diff --git a/components/crash/core/common/BUILD.gn b/components/crash/core/common/BUILD.gn
index e602f4ede44f15746bf1775fcc90fefa4cb39489..dc7216dc8e7144673716a9ddb15cdfd1e34aecf8 100644
--- a/components/crash/core/common/BUILD.gn
+++ b/components/crash/core/common/BUILD.gn
@@ -22,14 +22,17 @@ source_set("common") {
source_set("unit_tests") {
testonly = true
+ sources = [
+ "crash_keys_unittest.cc",
+ ]
+
+ deps = [
+ ":common",
+ "//base",
+ "//testing/gtest",
+ ]
+
if (is_mac || is_ios) {
- sources = [
- "objc_zombie_unittest.mm",
- ]
- deps = [
- ":common",
- "//base",
- "//testing/gtest",
- ]
+ sources += [ "objc_zombie_unittest.mm" ]
}
}
« no previous file with comments | « components/components_tests.gyp ('k') | components/crash/core/common/crash_keys.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698