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

Unified Diff: components/crash_keys.gypi

Issue 1298743002: Partially componentize chrome/common/crash_keys. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo (= instead of == in components/crash_keys.gypi) Created 5 years, 4 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: components/crash_keys.gypi
diff --git a/components/crash_keys.gypi b/components/crash_keys.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..6551551e9559e00a9071fe3383645e5031109b17
--- /dev/null
+++ b/components/crash_keys.gypi
@@ -0,0 +1,47 @@
+# 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.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/crash_keys
+ 'target_name': 'crash_keys',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ # List of dependencies is intentionally very minimal. Please avoid
+ # adding extra dependencies without first checking with OWNERS.
+ '../base/base.gyp:base',
+ ],
+ 'sources': [
+ 'crash_keys/crash_keys.cc',
+ 'crash_keys/crash_keys.h',
+ ],
+ },
+ ],
+ 'conditions': [
+ ['OS=="win" and target_arch=="ia32"', {
+ 'targets': [
+ {
+ 'target_name': 'crash_keys_win64',
+ 'type': 'static_library',
+ 'sources': [
+ 'crash_keys/crash_keys.cc',
+ 'crash_keys/crash_keys.h',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base_win64',
+ ],
+ 'configurations': {
+ 'Common_Base': {
+ 'msvs_target_platform': 'x64',
+ },
+ },
+ },
+ ],
+ }],
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698