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

Unified Diff: dart.gyp

Issue 10823209: Add support for building the Dart VM for Android OS. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Directory::CreateTemp("") to work on Android. Also fix platform_test.dart to know about Android… Created 8 years, 4 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 | « no previous file | runtime/bin/bin.gypi » ('j') | runtime/bin/bin.gypi » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart.gyp
diff --git a/dart.gyp b/dart.gyp
index 1b62e45af165c3358b8180c1af485ce725034bdf..980a59c673db19d2fc6b7b171f6bc096d5a42ddb 100644
--- a/dart.gyp
+++ b/dart.gyp
@@ -21,6 +21,13 @@
'runtime/dart-runtime.gyp:process_test',
'runtime/dart-runtime.gyp:test_extension',
],
+ 'conditions': [
+ ['dart_want_separate_host_toolset==1', {
ahe 2012/08/08 19:09:58 Looks like this is being added everywhere. I'd lik
jackpal 2012/08/09 01:09:48 This is left over from an attempt to get the full
+ 'toolsets': ['host'],
+ }, {
+ 'toolsets': ['target'],
+ }],
+ ]
},
{
# Build the SDK. This target is separate from upload_sdk as the
@@ -66,6 +73,11 @@
'compiler',
],
}],
+ ['dart_want_separate_host_toolset==1', {
+ 'toolsets': ['host'],
+ }, {
+ 'toolsets': ['target'],
+ }],
],
},
{
@@ -93,6 +105,13 @@
],
},
],
+ 'conditions': [
+ ['dart_want_separate_host_toolset==1', {
+ 'toolsets': ['host'],
+ }, {
+ 'toolsets': ['target'],
+ }],
+ ],
},
{
'target_name': 'dart2js',
@@ -100,6 +119,13 @@
'dependencies': [
'utils/compiler/compiler.gyp:dart2js',
],
+ 'conditions': [
+ ['dart_want_separate_host_toolset==1', {
+ 'toolsets': ['host'],
+ }, {
+ 'toolsets': ['target'],
+ }],
+ ],
},
{
'target_name': 'api_docs',
@@ -107,6 +133,13 @@
'dependencies': [
'utils/apidoc/apidoc.gyp:api_docs',
],
+ 'conditions': [
+ ['dart_want_separate_host_toolset==1', {
+ 'toolsets': ['host'],
+ }, {
+ 'toolsets': ['target'],
+ }]
+ ],
}
],
}
« no previous file with comments | « no previous file | runtime/bin/bin.gypi » ('j') | runtime/bin/bin.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698