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

Unified Diff: tools/create_sdk.py

Issue 1190103003: Remove dart_debugger_api.h (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 | « runtime/vm/snapshot_test.cc ('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 7ebe084f5cf67d0f00fe2ffd57c2e5b6b6a1d86a..3a2b541ad356704665cb5a7e2bb79f36ac98dc12 100755
--- a/tools/create_sdk.py
+++ b/tools/create_sdk.py
@@ -28,9 +28,9 @@
# ........utils_wrapper.dart.snapshot
# ....include/
# ......dart_api.h
-# ......dart_debugger_api.h
# ......dart_mirrors_api.h
# ......dart_native_api.h
+# ......dart_tools_api.h
# ....lib/
# ......_internal/
# ......async/
@@ -182,12 +182,12 @@ def Main():
os.makedirs(INCLUDE)
copyfile(join(HOME, 'runtime', 'include', 'dart_api.h'),
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'))
+ copyfile(join(HOME, 'runtime', 'include', 'dart_tools_api.h'),
+ join(INCLUDE, 'dart_tools_api.h'))
#
# Create and populate sdk/lib.
« no previous file with comments | « runtime/vm/snapshot_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698