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

Side by Side Diff: dart.gyp

Issue 8890024: Get dependencies for SDK close to right. (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 | no next file » | 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 21 matching lines...) Expand all
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 { 38 {
39 'target_name': 'create_sdk', 39 'target_name': 'create_sdk',
40 'type': 'none', 40 'type': 'none',
41 'dependencies': [ 41 'dependencies': [
42 'compiler',
42 'frog', 43 'frog',
43 'runtime/dart-runtime.gyp:dart', 44 'runtime',
44 ], 45 ],
45 'actions': [ 46 'actions': [
46 { 47 {
47 'action_name': 'create_sdk_py', 48 'action_name': 'create_sdk_py',
48 'inputs': [ 49 'inputs': [
50 # TODO(dgrove) - change these to dependencies and add dom
51 # dependences once issues 754 and 755 are fixed
52 'client/html/html.dart',
53 'client/html/htmlimpl.dart',
54 'client/dom.dart',
55 'client/dom/generated',
56 'client/dom/src',
57 'frog/frogc',
49 'tools/create_sdk.py', 58 'tools/create_sdk.py',
50 ], 59 ],
51 'outputs': [ 60 'outputs': [
52 '<(PRODUCT_DIR)/sdk', 61 '<(PRODUCT_DIR)/sdk',
53 ], 62 ],
54 'action': [ 63 'action': [
55 'python', 64 'python',
56 'tools/create_sdk.py', 65 'tools/create_sdk.py',
57 '<(PRODUCT_DIR)/sdk', 66 '<(PRODUCT_DIR)/sdk',
58 ], 67 ],
(...skipping 29 matching lines...) Expand all
88 # so don't build it for now. 97 # so don't build it for now.
89 #{ 98 #{
90 # 'target_name': 'client', 99 # 'target_name': 'client',
91 # 'type': 'none', 100 # 'type': 'none',
92 # 'dependencies': [ 101 # 'dependencies': [
93 # 'client/dart.gyp:fling', 102 # 'client/dart.gyp:fling',
94 # ], 103 # ],
95 #}, 104 #},
96 ], 105 ],
97 } 106 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698