forked from dart-lang/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dart.gyp
125 lines (124 loc) · 3.15 KB
/
dart.gyp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
{
'targets': [
{
'target_name': 'most',
'type': 'none',
'dependencies': [
'analysis_server',
'create_sdk',
'dart2js',
'dartanalyzer',
'packages',
'runtime',
'samples',
],
},
{
# This is the target that is built on the VM build bots. It
# must depend on anything that is required by the VM test
# suites.
'target_name': 'runtime',
'type': 'none',
'dependencies': [
'runtime/dart-runtime.gyp:dart',
'runtime/dart-runtime.gyp:dart_precompiled_runtime',
'runtime/dart-runtime.gyp:dart_no_snapshot',
'runtime/dart-runtime.gyp:run_vm_tests',
'runtime/dart-runtime.gyp:process_test',
'packages',
'runtime/dart-runtime.gyp:test_extension',
'runtime/dart-runtime.gyp:sample_extension',
],
},
{
'target_name': 'create_sdk',
'type': 'none',
'dependencies': [
'create_sdk.gyp:create_sdk_internal',
],
},
{
'target_name': 'dart2js',
'type': 'none',
'dependencies': [
'utils/compiler/compiler.gyp:dart2js',
],
},
{
'target_name': 'dartanalyzer',
'type': 'none',
'dependencies': [
'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer',
],
},
{
'target_name': 'dartfmt',
'type': 'none',
'dependencies': [
'utils/dartfmt/dartfmt.gyp:dartfmt',
],
},
{
'target_name': 'analysis_server',
'type': 'none',
'dependencies': [
'utils/analysis_server/analysis_server.gyp:analysis_server',
],
},
{
# This is the target that is built on the dart2js build bots.
# It must depend on anything that is required by the dart2js
# test suites.
'target_name': 'dart2js_bot',
'type': 'none',
'dependencies': [
'create_sdk',
'packages',
'try',
],
},
{
# This is the target that is built on the dart2js debug build bots.
# It must depend on anything that is required by the dart2js
# test suites.
# We have this additional target because the try target takes to long
# to build in debug mode and will make the build step time out.
'target_name': 'dart2js_bot_debug',
'type': 'none',
'dependencies': [
'create_sdk',
'packages',
],
},
{
'target_name': 'samples',
'type': 'none',
'dependencies': [],
'conditions': [
['OS!="android"', {
'dependencies': [
'runtime/dart-runtime.gyp:sample_extension',
],
},
],
]
},
{
'target_name': 'packages',
'type': 'none',
'dependencies': [
'pkg/pkg.gyp:pkg_packages',
],
},
{
'target_name': 'try',
'type': 'none',
'dependencies': [
'site/try/build_try.gyp:try_site',
],
},
],
}