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

Side by Side Diff: runtime/dart-runtime.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: 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 (c) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 'vm/vm.gypi', 7 'vm/vm.gypi',
8 'bin/bin.gypi', 8 'bin/bin.gypi',
9 'third_party/double-conversion/src/double-conversion.gypi', 9 'third_party/double-conversion/src/double-conversion.gypi',
10 'third_party/jscre/jscre.gypi', 10 'third_party/jscre/jscre.gypi',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 'vm/debugger_api_impl.cc', 57 'vm/debugger_api_impl.cc',
58 ], 58 ],
59 'defines': [ 59 'defines': [
60 'DART_SHARED_LIB', 60 'DART_SHARED_LIB',
61 ], 61 ],
62 'direct_dependent_settings': { 62 'direct_dependent_settings': {
63 'include_dirs': [ 63 'include_dirs': [
64 'include', 64 'include',
65 ], 65 ],
66 }, 66 },
67 'conditions': [
68 ['dart_want_separate_host_toolset==1', {
69 'toolsets': ['host'],
70 }, {
71 'toolsets': ['target'],
72 }],
73 ],
67 }, 74 },
68 ], 75 ],
69 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698