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

Unified Diff: tools/gyp/configurations.gypi

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: Incorporate review feedback from cshapiro 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
Index: tools/gyp/configurations.gypi
diff --git a/tools/gyp/configurations.gypi b/tools/gyp/configurations.gypi
index ad41edd993f815dbbf28ab6bd7efbd532a667327..1f37eea5e55a814bfa27f3db301cb0f6c0d341f9 100644
--- a/tools/gyp/configurations.gypi
+++ b/tools/gyp/configurations.gypi
@@ -18,6 +18,13 @@
# Don't use separate host toolset for compiling V8.
'want_separate_host_toolset': 0,
+ # Optionally use separate host toolset for compiling dart.
+ 'dart_want_separate_host_toolset': 0,
+
+ 'conditions': [
+ [ 'OS=="android"', { 'dart_want_separate_host_toolset': 1}]
+ ],
+
'conditions': [
['"<(target_arch)"=="ia32"', { 'dart_target_arch': 'IA32', }],
['"<(target_arch)"=="x64"', { 'dart_target_arch': 'X64', }],

Powered by Google App Engine
This is Rietveld 408576698