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

Unified Diff: snapshot/snapshot.gyp

Issue 990553003: Set product_name on many targets to use a crashpad_ prefix (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Use target_name instead of product_name Created 5 years, 9 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
« no previous file with comments | « minidump/minidump.gyp ('k') | tools/tools.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: snapshot/snapshot.gyp
diff --git a/snapshot/snapshot.gyp b/snapshot/snapshot.gyp
index e031760758b5c63f60beeafd85f58065074afcea..71f0ca404c8941edb4a9f97c69130001f7c3974e 100644
--- a/snapshot/snapshot.gyp
+++ b/snapshot/snapshot.gyp
@@ -15,13 +15,13 @@
{
'targets': [
{
- 'target_name': 'snapshot',
+ 'target_name': 'crashpad_snapshot',
'type': 'static_library',
'dependencies': [
- '../client/client.gyp:client',
- '../compat/compat.gyp:compat',
+ '../client/client.gyp:crashpad_client',
+ '../compat/compat.gyp:crashpad_compat',
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
- '../util/util.gyp:util',
+ '../util/util.gyp:crashpad_util',
],
'include_dirs': [
'..',
@@ -99,13 +99,13 @@
]
},
{
- 'target_name': 'snapshot_test_lib',
+ 'target_name': 'crashpad_snapshot_test_lib',
'type': 'static_library',
'dependencies': [
- 'snapshot',
- '../compat/compat.gyp:compat',
+ 'crashpad_snapshot',
+ '../compat/compat.gyp:crashpad_compat',
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
- '../util/util.gyp:util',
+ '../util/util.gyp:crashpad_util',
],
'include_dirs': [
'..',
@@ -128,17 +128,17 @@
],
},
{
- 'target_name': 'snapshot_test',
+ 'target_name': 'crashpad_snapshot_test',
'type': 'executable',
'dependencies': [
- 'snapshot',
- '../client/client.gyp:client',
- '../compat/compat.gyp:compat',
+ 'crashpad_snapshot',
+ '../client/client.gyp:crashpad_client',
+ '../compat/compat.gyp:crashpad_compat',
'../third_party/gtest/gtest.gyp:gtest',
'../third_party/gtest/gtest.gyp:gtest_main',
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
- '../util/util.gyp:util',
- '../util/util.gyp:util_test_lib',
+ '../util/util.gyp:crashpad_util',
+ '../util/util.gyp:crashpad_util_test_lib',
],
'include_dirs': [
'..',
« no previous file with comments | « minidump/minidump.gyp ('k') | tools/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698