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

Side by Side Diff: dart.gyp

Issue 15706008: A working version of dart on Android. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Finished CL - ready for review. Created 7 years, 6 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
« no previous file with comments | « no previous file | runtime/bin/bin.gypi » ('j') | runtime/bin/bin.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'most', 8 'target_name': 'most',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 20 matching lines...) Expand all
31 # This is the target that is built on the VM build bots. It 31 # This is the target that is built on the VM build bots. It
32 # must depend on anything that is required by the VM test 32 # must depend on anything that is required by the VM test
33 # suites. 33 # suites.
34 'target_name': 'runtime', 34 'target_name': 'runtime',
35 'type': 'none', 35 'type': 'none',
36 'dependencies': [ 36 'dependencies': [
37 'runtime/dart-runtime.gyp:dart', 37 'runtime/dart-runtime.gyp:dart',
38 'runtime/dart-runtime.gyp:dart_no_snapshot', 38 'runtime/dart-runtime.gyp:dart_no_snapshot',
39 'runtime/dart-runtime.gyp:run_vm_tests', 39 'runtime/dart-runtime.gyp:run_vm_tests',
40 'runtime/dart-runtime.gyp:process_test', 40 'runtime/dart-runtime.gyp:process_test',
41 'runtime/dart-runtime.gyp:test_extension',
42 'packages', 41 'packages',
43 ], 42 ],
43 'conditions': [
44 ['OS!="android"', {
45 'dependencies': [
46 'runtime/dart-runtime.gyp:test_extension',
47 ],
48 }],
49 ],
44 }, 50 },
45 { 51 {
46 # Build the SDK. This target is separate from upload_sdk as the 52 # Build the SDK. This target is separate from upload_sdk as the
47 # editor needs to build the SDK without uploading it. 53 # editor needs to build the SDK without uploading it.
48 'target_name': 'create_sdk', 54 'target_name': 'create_sdk',
49 'type': 'none', 55 'type': 'none',
50 'dependencies': [ 56 'dependencies': [
51 'runtime/dart-runtime.gyp:dart', 57 'runtime/dart-runtime.gyp:dart',
52 'utils/compiler/compiler.gyp:dart2js', 58 'utils/compiler/compiler.gyp:dart2js',
53 'utils/pub/pub.gyp:pub', 59 'utils/pub/pub.gyp:pub',
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 }, 221 },
216 { 222 {
217 'target_name': 'packages', 223 'target_name': 'packages',
218 'type': 'none', 224 'type': 'none',
219 'dependencies': [ 225 'dependencies': [
220 'pkg/pkg.gyp:pkg_packages', 226 'pkg/pkg.gyp:pkg_packages',
221 ], 227 ],
222 }, 228 },
223 ], 229 ],
224 } 230 }
OLDNEW
« 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