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

Unified Diff: tools/tools.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 | « snapshot/snapshot.gyp ('k') | util/test/executable_path_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/tools.gyp
diff --git a/tools/tools.gyp b/tools/tools.gyp
index 98010b38f92d6e21b32e22989af9703e85096430..c53ede332b9c76a364a7eef20da6f59863e77bb3 100644
--- a/tools/tools.gyp
+++ b/tools/tools.gyp
@@ -44,7 +44,7 @@
'targets': [
{
- 'target_name': 'tool_support',
+ 'target_name': 'crashpad_tool_support',
'type': 'static_library',
'dependencies': [
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
@@ -61,10 +61,10 @@
'target_name': 'catch_exception_tool',
'type': 'executable',
'dependencies': [
- 'tool_support',
- '../compat/compat.gyp:compat',
+ 'crashpad_tool_support',
+ '../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': [
'..',
@@ -77,10 +77,10 @@
'target_name': 'exception_port_tool',
'type': 'executable',
'dependencies': [
- 'tool_support',
- '../compat/compat.gyp:compat',
+ 'crashpad_tool_support',
+ '../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': [
'..',
@@ -101,12 +101,12 @@
'target_name': 'generate_dump',
'type': 'executable',
'dependencies': [
- 'tool_support',
- '../compat/compat.gyp:compat',
- '../minidump/minidump.gyp:minidump',
- '../snapshot/snapshot.gyp:snapshot',
+ 'crashpad_tool_support',
+ '../compat/compat.gyp:crashpad_compat',
+ '../minidump/minidump.gyp:crashpad_minidump',
+ '../snapshot/snapshot.gyp:crashpad_snapshot',
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
- '../util/util.gyp:util',
+ '../util/util.gyp:crashpad_util',
],
'include_dirs': [
'..',
@@ -127,10 +127,10 @@
'target_name': 'on_demand_service_tool',
'type': 'executable',
'dependencies': [
- 'tool_support',
- '../compat/compat.gyp:compat',
+ 'crashpad_tool_support',
+ '../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': [
'..',
@@ -149,9 +149,9 @@
'target_name': 'run_with_crashpad',
'type': 'executable',
'dependencies': [
- 'tool_support',
- '../client/client.gyp:client',
- '../compat/compat.gyp:compat',
+ 'crashpad_tool_support',
+ '../client/client.gyp:crashpad_client',
+ '../compat/compat.gyp:crashpad_compat',
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
],
'include_dirs': [
« no previous file with comments | « snapshot/snapshot.gyp ('k') | util/test/executable_path_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698