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

Unified Diff: tools/create_sdk.py

Issue 16973003: Split dart_api.h into multiple parts: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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 | « samples/sample_extension/sample_extension.gyp ('k') | tools/gyp/configurations_make.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_sdk.py
===================================================================
--- tools/create_sdk.py (revision 24032)
+++ tools/create_sdk.py (working copy)
@@ -24,6 +24,8 @@
# ....include/
# ......dart_api.h
# ......dart_debugger_api.h
+# ......dart_mirrors_api.h
+# ......dart_native_api.h
# ....lib/
# ......_internal/
# ......async/
@@ -174,6 +176,10 @@
join(INCLUDE, 'dart_api.h'))
copyfile(join(HOME, 'runtime', 'include', 'dart_debugger_api.h'),
join(INCLUDE, 'dart_debugger_api.h'))
+ copyfile(join(HOME, 'runtime', 'include', 'dart_mirrors_api.h'),
+ join(INCLUDE, 'dart_mirrors_api.h'))
+ copyfile(join(HOME, 'runtime', 'include', 'dart_native_api.h'),
+ join(INCLUDE, 'dart_native_api.h'))
#
# Create and populate sdk/lib.
« no previous file with comments | « samples/sample_extension/sample_extension.gyp ('k') | tools/gyp/configurations_make.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698