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

Side by Side Diff: runtime/third_party/double-conversion/src/double-conversion.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: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2010 Google Inc. All Rights Reserved. 1 # Copyright 2010 Google Inc. All Rights Reserved.
2 2
3 { 3 {
4 'targets': [ 4 'targets': [
5 { 5 {
6 'target_name': 'libdouble_conversion', 6 'target_name': 'libdouble_conversion',
7 'type': 'static_library', 7 'type': 'static_library',
8 'dependencies': [ 8 'dependencies': [
9 ], 9 ],
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 12 matching lines...) Expand all
23 'double-conversion.cc', 23 'double-conversion.cc',
24 'double-conversion.h', 24 'double-conversion.h',
25 'fast-dtoa.cc', 25 'fast-dtoa.cc',
26 'fast-dtoa.h', 26 'fast-dtoa.h',
27 'fixed-dtoa.cc', 27 'fixed-dtoa.cc',
28 'fixed-dtoa.h', 28 'fixed-dtoa.h',
29 'strtod.cc', 29 'strtod.cc',
30 'strtod.h', 30 'strtod.h',
31 'utils.h', 31 'utils.h',
32 ], 32 ],
33 'conditions': [
Søren Gjesse 2012/08/08 11:35:56 Indentation here and in several files following.
jackpal 2012/08/09 01:09:48 Fixed by removing the code.
34 ['dart_want_separate_host_toolset==1', {
35 'toolsets': ['host', 'target'],
36 }, {
37 'toolsets': ['target'],
38 }]
39 ],
33 }, 40 },
34 ], 41 ],
35 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698