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

Unified Diff: compiler/dart-compiler.gyp

Issue 9422019: isolates refactor: this change introduces 'dart:isolate' as a library. This is a (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: '' Created 8 years, 10 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
Index: compiler/dart-compiler.gyp
diff --git a/compiler/dart-compiler.gyp b/compiler/dart-compiler.gyp
index 0891784473c184671f28f29ae4b21de6795de30b..df2cb3604af05220efb284fce306e9bc6853a509 100644
--- a/compiler/dart-compiler.gyp
+++ b/compiler/dart-compiler.gyp
@@ -11,6 +11,7 @@
'domlib_sources.gypi',
'htmllib_sources.gypi',
'jsonlib_sources.gypi',
+ 'isolatelib_sources.gypi',
],
'targets': [
{
@@ -119,6 +120,9 @@
'jsonlib_sources.gypi',
'<@(jsonlib_sources)',
'<@(jsonlib_resources)',
+ 'isolatelib_sources.gypi',
+ '<@(isolatelib_sources)',
+ '<@(isolatelib_resources)',
],
'outputs': [
'<(INTERMEDIATE_DIR)/<(_target_name)/syslib.stamp',
@@ -126,6 +130,7 @@
'<(INTERMEDIATE_DIR)/<(_target_name)/domlib.jar.stamp',
'<(INTERMEDIATE_DIR)/<(_target_name)/htmllib.jar.stamp',
'<(INTERMEDIATE_DIR)/<(_target_name)/jsonlib.jar.stamp',
+ '<(INTERMEDIATE_DIR)/<(_target_name)/isolatelib.jar.stamp',
],
'action': [
'../third_party/apache_ant/v1_7_1/bin/ant',
@@ -149,6 +154,7 @@
'<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/dom/dom/dom.dart.deps',
'<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/html/html/html.dart.deps',
'<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/json/json/json.dart.deps',
+ '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/isolate/isolate/isolate_compiler.dart.deps',
],
'action': [
'<(PRODUCT_DIR)/dartc', 'api.dart',
@@ -217,6 +223,22 @@
'jar', 'u0f', '<(PRODUCT_DIR)/compiler/lib/jsonlib.jar', '-C', '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/json', 'json',
],
},
+ {
+ 'message': 'Packaging dart:isolate artifacts',
+ 'action_name': 'package_isolatelib_artifacts',
+ 'inputs': [
+ '<(INTERMEDIATE_DIR)/<(_target_name)/isolatelib.jar.stamp',
+ '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/isolate/isolate/isolate_compiler.dart.deps',
+ 'api.dart',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/compiler/lib/isolatelib.jar',
+ ],
+ 'action': [
+ 'jar', 'u0f', '<(PRODUCT_DIR)/compiler/lib/isolatelib.jar', '-C',
+ '<(INTERMEDIATE_DIR)/<(_target_name)/api/dart/isolate', 'isolate',
+ ],
+ },
],
},
{
« no previous file with comments | « compiler/api.dart ('k') | compiler/dartc.xml » ('j') | lib/isolate/isolate_api.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698