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

Unified Diff: tools/create_sdk.py

Issue 12088120: Remove cURL from the SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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: tools/create_sdk.py
diff --git a/tools/create_sdk.py b/tools/create_sdk.py
index 053f1109c4eefebc334dde16314c2b20e5d3ff34..28882b97399fdfb2a534d65796f2fbe9712977f4 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -268,23 +268,6 @@ def Main(argv):
"7zip/7za.exe"),
])
- # Copy in cURL on all operating systems, since we need the certificates file
- # even outside Windows. Leave out the EXE on non-Windows systems, though.
- curl_ignore_patterns = ignore_patterns('.svn') if HOST_OS == 'win32' \
- else ignore_patterns('.svn', '*.exe')
- copytree(join(HOME, 'third_party', 'curl'),
- join(join(UTIL, 'pub'), 'curl'),
- ignore=curl_ignore_patterns)
-
- ReplaceInFiles([
- join(UTIL, 'pub', 'curl_client.dart'),
- ], [
- ("../../third_party/curl/curl.exe",
- "curl/curl.exe"),
- ("../../third_party/curl/ca-certificates.crt",
- "curl/ca-certificates.crt"),
- ])
-
version = utils.GetVersion()
# Copy dart2js/dartdoc/pub.
« 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