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

Side by Side Diff: dart.gyp

Issue 9950019: Renamed the 'dartc' launch script to 'dart-analysis' and adds it to dart-sdk (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged up to tip of trunk, incorporated scheglov's feedback Created 8 years, 8 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
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',
scheglov 2012/04/11 19:51:59 Still something about "compiler"? Is this dart2js
zundel 2012/04/17 10:00:41 This target might be invoked from a script outside
14 'type': 'none', 14 'type': 'none',
15 'dependencies': [ 15 'dependencies': [
16 'compiler/dart-compiler.gyp:dartc', 16 'compiler/dart-compiler.gyp:dart_analyzer',
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': 'create_sdk', 30 'target_name': 'create_sdk',
31 'type': 'none', 31 'type': 'none',
32 'conditions': [ 32 'conditions': [
33 ['OS=="win"', { 33 ['OS=="win"', {
34 'msvs_cygwin_dirs': ['<(cygwin_dir)'], 34 'msvs_cygwin_dirs': ['<(cygwin_dir)'],
35 }], 35 }],
36 ], 36 ],
37 'dependencies': [ 37 'dependencies': [
38 'runtime', 38 'runtime',
39 'compiler',
39 ], 40 ],
40 'actions': [ 41 'actions': [
41 { 42 {
42 'action_name': 'create_sdk_py', 43 'action_name': 'create_sdk_py',
43 'inputs': [ 44 'inputs': [
44 '<!@(["python", "frog/scripts/list_frog_files.py", "frog"])', 45 '<!@(["python", "frog/scripts/list_frog_files.py", "frog"])',
45 # TODO(dgrove) - change these to dependencies and add dom 46 # TODO(dgrove) - change these to dependencies and add dom
46 # dependences once issues 754 and 755 are fixed 47 # dependences once issues 754 and 755 are fixed
47 'lib/html/html_frog.dart', 48 'lib/html/html_frog.dart',
48 'lib/html/html_dartium.dart', 49 'lib/html/html_dartium.dart',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 }, 108 },
108 { 109 {
109 'target_name': 'api_docs', 110 'target_name': 'api_docs',
110 'type': 'none', 111 'type': 'none',
111 'dependencies': [ 112 'dependencies': [
112 'utils/apidoc/apidoc.gyp:api_docs', 113 'utils/apidoc/apidoc.gyp:api_docs',
113 ], 114 ],
114 } 115 }
115 ], 116 ],
116 } 117 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698