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

Unified Diff: tools/create_sdk.py

Issue 107193006: Remove unused expired certificate, and database, from pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Patch create_sdk.py. Created 7 years 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 | « sdk/lib/_internal/pub/resource/certs/pkcs11.txt ('k') | 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 97b14a49e20a8ab56eda77724701204bead7812e..5261e7170e9668b9b3ea0b068be8c9f922525740 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -195,7 +195,6 @@ def Main(argv):
for library in [join('_chrome', 'dart2js'), join('_chrome', 'dartium'),
join('_internal', 'compiler'),
join('_internal', 'dartdoc'),
- join('_internal', 'pub', 'resource'),
join('_internal', 'lib'),
'async', 'collection', '_collection_dev', 'convert',
'core', 'crypto', 'io', 'isolate',
@@ -231,8 +230,10 @@ def Main(argv):
# Copy in 7zip for Windows.
if HOST_OS == 'win32':
+ RESOURCE = join(SDK_tmp, 'lib', '_internal', 'pub', 'resource')
+ os.makedirs(RESOURCE)
copytree(join(HOME, 'third_party', '7zip'),
- join(SDK_tmp, 'lib', '_internal', 'pub', 'resource', '7zip'),
+ join(RESOURCE, '7zip'),
ignore=ignore_patterns('.svn'))
# Copy dart2js/dartdoc/pub.
« no previous file with comments | « sdk/lib/_internal/pub/resource/certs/pkcs11.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698