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

Side by Side Diff: dart.gyp

Issue 8619005: Initial CL to create SDK directory (this will be done as a build step). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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 | frog/frog_options.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) 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'compiler', 8 'target_name': 'compiler',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 17 matching lines...) Expand all
28 'frog/dart-frog.gyp:frog', 28 'frog/dart-frog.gyp:frog',
29 ], 29 ],
30 }, 30 },
31 { 31 {
32 'target_name': 'frogsh', 32 'target_name': 'frogsh',
33 'type': 'none', 33 'type': 'none',
34 'dependencies': [ 34 'dependencies': [
35 'frog/dart-frog.gyp:frogsh', 35 'frog/dart-frog.gyp:frogsh',
36 ], 36 ],
37 }, 37 },
38 {
39 'target_name': 'sdk',
40 'type': 'none',
41 'dependencies': [
42 'frog',
43 'runtime',
44 ],
45 'actions': [
46 {
47 'action_name': 'create_sdk',
48 'inputs': [
49 'tools/create_sdk.py',
50 ],
51 'outputs': [],
52 'action': [
53 'python',
54 'tools/create_sdk.py',
55 ],
56 'message': 'Creating SDK.',
57 },
58 ],
59 },
38 # TODO(ngeoffray): Fling does not have proper dependencies, 60 # TODO(ngeoffray): Fling does not have proper dependencies,
39 # so don't build it for now. 61 # so don't build it for now.
40 #{ 62 #{
41 # 'target_name': 'client', 63 # 'target_name': 'client',
42 # 'type': 'none', 64 # 'type': 'none',
43 # 'dependencies': [ 65 # 'dependencies': [
44 # 'client/dart.gyp:fling', 66 # 'client/dart.gyp:fling',
45 # ], 67 # ],
46 #}, 68 #},
47 ], 69 ],
48 } 70 }
OLDNEW
« no previous file with comments | « no previous file | frog/frog_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698