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

Unified Diff: components/cronet.gypi

Issue 1985893002: Fix of Issue 611692 - Chromium autoroller compilation is failing flakily (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet.gypi
diff --git a/components/cronet.gypi b/components/cronet.gypi
index d6d995817a90d7fb336d81c3485bec31cf9e9c75..76f3bfc080c084bb49409ab173c0df2b2b5e3df5 100644
--- a/components/cronet.gypi
+++ b/components/cronet.gypi
@@ -785,7 +785,7 @@
],
},
{
- 'target_name': 'libcronet',
+ 'target_name': 'libcronet_shared',
'type': 'shared_library',
'sources': [
'cronet/ios/Cronet.h',
@@ -879,7 +879,7 @@
'dependencies': [
# Depend on the dummy target so that all of CrNet's dependencies
# are built before packaging.
- 'libcronet',
+ 'libcronet_shared',
],
'actions': [
{
@@ -891,13 +891,13 @@
# Actions need an inputs list, even if it's empty.
'inputs': [
'<(tool_path)',
- '<(PRODUCT_DIR)/libcronet.dylib',
+ '<(PRODUCT_DIR)/libcronet_shared.dylib',
],
# Only specify one output, since this will be libtool's output.
'outputs': [ '<(package_dir)/libcronet_standalone_with_symbols.a' ],
'action': ['<(tool_path)',
'<(PRODUCT_DIR)',
- 'libcronet.dylib',
+ 'libcronet_shared.dylib',
'<@(_outputs)',
],
},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698