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

Side by Side Diff: dart/dart.gyp

Issue 9719019: Launch Leg independently of Frog. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address own comment Created 8 years, 9 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 | dart/frog/leg/colors.dart » ('j') | no next file with comments »
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 'variables': { 6 'variables': {
7 # These variables are used in the creation of the .vcproj file on 7 # These variables are used in the creation of the .vcproj file on
8 # Windows. 8 # Windows.
9 'cygwin_dir': 'third_party/cygwin', 9 'cygwin_dir': 'third_party/cygwin',
10 }, 10 },
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'compiler', 13 'target_name': 'compiler',
14 'type': 'none', 14 'type': 'none',
15 'dependencies': [ 15 'dependencies': [
16 'compiler/dart-compiler.gyp:dartc', 16 'compiler/dart-compiler.gyp:dartc',
17 ], 17 ],
18 'actions': [] 18 'actions': []
19 }, 19 },
20 { 20 {
21 'target_name': 'runtime', 21 'target_name': 'runtime',
22 'type': 'none', 22 'type': 'none',
23 'dependencies': [ 23 'dependencies': [
24 'runtime/dart-runtime.gyp:dart', 24 'runtime/dart-runtime.gyp:dart',
25 'runtime/dart-runtime.gyp:run_vm_tests', 25 'runtime/dart-runtime.gyp:run_vm_tests',
26 'runtime/dart-runtime.gyp:process_test', 26 'runtime/dart-runtime.gyp:process_test',
27 ], 27 ],
28 }, 28 },
29 { 29 {
30 'target_name': 'frog',
31 'type': 'none',
32 'dependencies': [
33 'frog/dart-frog.gyp:frog',
34 ],
35 },
36 {
37 'target_name': 'frogsh',
38 'type': 'none',
39 'dependencies': [
40 'frog/dart-frog.gyp:frogsh',
41 ],
42 },
43 {
44 'target_name': 'create_sdk', 30 'target_name': 'create_sdk',
45 'type': 'none', 31 'type': 'none',
46 'conditions': [ 32 'conditions': [
47 ['OS=="win"', { 33 ['OS=="win"', {
48 'msvs_cygwin_dirs': ['<(cygwin_dir)'], 34 'msvs_cygwin_dirs': ['<(cygwin_dir)'],
49 }], 35 }],
50 ], 36 ],
51 'dependencies': [ 37 'dependencies': [
52 'runtime', 38 'runtime',
53 ], 39 ],
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 '<(PRODUCT_DIR)/dart-sdk' 90 '<(PRODUCT_DIR)/dart-sdk'
105 ], 91 ],
106 }, 92 },
107 ], 93 ],
108 }, 94 },
109 { 95 {
110 'target_name': 'dart2js', 96 'target_name': 'dart2js',
111 'type': 'none', 97 'type': 'none',
112 'dependencies': [ 98 'dependencies': [
113 'utils/compiler/compiler.gyp:dart2js', 99 'utils/compiler/compiler.gyp:dart2js',
100
101 # TODO(ahe): Remove dependencies on frog and frogsh, they are
102 # just here to simplify
103 # frog/scripts/buildbot_annotated_steps.py temporarily.
104 'frog/dart-frog.gyp:frog',
105 'frog/dart-frog.gyp:frogsh',
114 ], 106 ],
115 }, 107 },
116 ], 108 ],
117 } 109 }
OLDNEW
« no previous file with comments | « no previous file | dart/frog/leg/colors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698