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

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
« no previous file with comments | « compiler/api.dart ('k') | compiler/dartc.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/dart-compiler.gyp
diff --git a/compiler/dart-compiler.gyp b/compiler/dart-compiler.gyp
index a3e7823002e1ea57a15e3172e9472f6c4d3b1173..64df41798b9bfe8c101562dc43a585f70e65346d 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': [
{
@@ -95,6 +96,9 @@
'jsonlib_sources.gypi',
'<@(jsonlib_sources)',
'<@(jsonlib_resources)',
+ 'isolatelib_sources.gypi',
+ '<@(isolatelib_sources)',
+ '<@(isolatelib_resources)',
],
'outputs': [
'<(INTERMEDIATE_DIR)/<(_target_name)/syslib.stamp',
@@ -102,6 +106,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',
@@ -125,6 +130,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',
@@ -193,6 +199,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698