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

Side by Side Diff: dart.gyp

Issue 10538087: Revert "Experiment: Enable building dart_analyzer on linux builders and adding to SDK" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | tools/create_sdk.py » ('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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'compiler', 8 'target_name': 'compiler',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 '<(PRODUCT_DIR)/dart-sdk/create.stamp', 47 '<(PRODUCT_DIR)/dart-sdk/create.stamp',
48 ], 48 ],
49 'action': [ 49 'action': [
50 'python', 50 'python',
51 'tools/create_sdk.py', 51 'tools/create_sdk.py',
52 '<(PRODUCT_DIR)/dart-sdk', 52 '<(PRODUCT_DIR)/dart-sdk',
53 ], 53 ],
54 'message': 'Creating SDK.', 54 'message': 'Creating SDK.',
55 }, 55 },
56 ], 56 ],
57 'conditions' : [ 57 # TODO(zundel): uncomment once build machines have prerequisite
58 ['OS=="linux"', { 58 # software installed. Also update create_sdk.py
59 'dependencies': [ 59 # 'conditions' : [
60 'compiler', 60 # ['OS=="linux"', {
61 ], 61 # 'dependencies': [
62 'inputs' : [ 62 # 'compiler',
63 '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer' 63 # ],
64 ], 64 # 'inputs' : [
65 }], 65 # '<(PRODUCT_DIR)/analyzer/bin/dart_analyzer'
66 ], 66 # ],
67 # }],
68 # ],
67 }, 69 },
68 { 70 {
69 # Upload the SDK. This target is separate from create_sdk as the 71 # Upload the SDK. This target is separate from create_sdk as the
70 # editor needs to build the SDK without uploading it. 72 # editor needs to build the SDK without uploading it.
71 'target_name': 'upload_sdk', 73 'target_name': 'upload_sdk',
72 'type': 'none', 74 'type': 'none',
73 'dependencies': [ 75 'dependencies': [
74 'create_sdk', 76 'create_sdk',
75 ], 77 ],
76 'actions': [ 78 'actions': [
(...skipping 28 matching lines...) Expand all
105 }, 107 },
106 { 108 {
107 'target_name': 'api_docs', 109 'target_name': 'api_docs',
108 'type': 'none', 110 'type': 'none',
109 'dependencies': [ 111 'dependencies': [
110 'utils/apidoc/apidoc.gyp:api_docs', 112 'utils/apidoc/apidoc.gyp:api_docs',
111 ], 113 ],
112 } 114 }
113 ], 115 ],
114 } 116 }
OLDNEW
« no previous file with comments | « no previous file | tools/create_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698