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

Unified Diff: util/util.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 | « util/test/executable_path_test.cc ('k') | util/win/process_info_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/util.gyp
diff --git a/util/util.gyp b/util/util.gyp
index ba72b15c4454d30f67b335ff5db433e63b3c8e5e..285a212619dda7da15d59f1bab8a4cce7adf3d6d 100644
--- a/util/util.gyp
+++ b/util/util.gyp
@@ -15,10 +15,10 @@
{
'targets': [
{
- 'target_name': 'util',
+ 'target_name': 'crashpad_util',
'type': 'static_library',
'dependencies': [
- '../compat/compat.gyp:compat',
+ '../compat/compat.gyp:crashpad_compat',
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
],
'include_dirs': [
@@ -207,13 +207,13 @@
],
},
{
- 'target_name': 'util_test_lib',
+ 'target_name': 'crashpad_util_test_lib',
'type': 'static_library',
'dependencies': [
- '../compat/compat.gyp:compat',
+ '../compat/compat.gyp:crashpad_compat',
'../third_party/gtest/gtest.gyp:gtest',
'../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
- 'util',
+ 'crashpad_util',
],
'include_dirs': [
'..',
@@ -250,13 +250,13 @@
],
},
{
- 'target_name': 'util_test',
+ 'target_name': 'crashpad_util_test',
'type': 'executable',
'dependencies': [
- 'util',
- 'util_test_lib',
- 'util_test_multiprocess_exec_test_child',
- '../compat/compat.gyp:compat',
+ 'crashpad_util',
+ 'crashpad_util_test_lib',
+ 'crashpad_util_test_multiprocess_exec_test_child',
+ '../compat/compat.gyp:crashpad_compat',
'../third_party/gmock/gmock.gyp:gmock',
'../third_party/gtest/gtest.gyp:gtest',
'../third_party/gtest/gtest.gyp:gtest_main',
@@ -331,7 +331,7 @@
],
},
{
- 'target_name': 'util_test_multiprocess_exec_test_child',
+ 'target_name': 'crashpad_util_test_multiprocess_exec_test_child',
'type': 'executable',
'sources': [
'test/multiprocess_exec_test_child.cc',
@@ -342,7 +342,7 @@
['OS=="win"', {
'targets': [
{
- 'target_name': 'util_test_process_info_test_child',
+ 'target_name': 'crashpad_util_test_process_info_test_child',
'type': 'executable',
'sources': [
'win/process_info_test_child.cc',
« no previous file with comments | « util/test/executable_path_test.cc ('k') | util/win/process_info_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698