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: frog/dart-frog.gyp

Issue 9004001: Fix build so we can make a Windows SDK! (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 | « dart.gyp ('k') | frog/frogc.bat » ('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 'variables': {
7 # These variables are used in the creation of the .vcproj file on
8 # Windows.
9 'cygwin_dir': '../third_party/cygwin',
10 'msvs_cygwin_dirs': ['<(cygwin_dir)'],
11 },
6 'targets': [ 12 'targets': [
7 { 13 {
8 'target_name': 'frog', 14 'target_name': 'frog',
9 'dependencies': [ 15 'dependencies': [
10 '../runtime/dart-runtime.gyp:dart', 16 '../runtime/dart-runtime.gyp:dart',
11 '../third_party/v8/src/d8.gyp:d8', 17 # TODO(efortuna): Currently the Windows build only runs using the
18 # dart VM, so we don't depend on d8 because of v8 build issues. Fix
19 # this so that Windows can also run with node.js and d8.
20 '<!@(["python", "scripts/list_frog_dependencies.py"])'
12 ], 21 ],
13 'type': 'none', 22 'type': 'none',
14 'actions': [ 23 'actions': [
15 { 24 {
16 'action_name': 'generate_frog', 25 'action_name': 'generate_frog',
17 'inputs': [ 26 'inputs': [
18 '<!@(["python", "scripts/list_frog_files.py"])', 27 '<!@(["python", "scripts/list_frog_files.py"])',
19 'scripts/bootstrap/frog_bootstrap_wrapper.py', 28 'scripts/bootstrap/frog_bootstrap_wrapper.py',
20 'scripts/bootstrap/frog_wrapper.py', 29 'scripts/bootstrap/frog_wrapper.py',
21 'frog.py', 30 'frog.py',
22 ], 31 ],
23 'outputs': [ 32 'outputs': [
24 '<(PRODUCT_DIR)/frog/bin/frog', 33 '<(PRODUCT_DIR)/frog/bin/frog',
25 ], 34 ],
26 'action': [ 35 'action': [
27 'python', 36 'python',
28 'scripts/bootstrap/frog_bootstrap_wrapper.py', 37 'scripts/bootstrap/frog_bootstrap_wrapper.py',
29 '<(PRODUCT_DIR)', 38 '<(PRODUCT_DIR)',
30 ], 39 ],
31 'message': 'Generating frog file' 40 'message': 'Generating frog file'
32 }, 41 },
33 ], 42 ],
34 }, 43 },
35 { 44 {
36 'target_name': 'frogsh', 45 'target_name': 'frogsh',
37 'dependencies': [ 46 'dependencies': [
38 '../runtime/dart-runtime.gyp:dart', 47 '../runtime/dart-runtime.gyp:dart',
39 '../third_party/v8/src/d8.gyp:d8', 48 '<!@(["python", "scripts/list_frog_dependencies.py"])',
40 ], 49 ],
41 'type': 'none', 50 'type': 'none',
42 'actions': [ 51 'actions': [
43 { 52 {
44 'action_name': 'generate_frogsh', 53 'action_name': 'generate_frogsh',
45 'inputs': [ 54 'inputs': [
46 '<!@(["python", "scripts/list_frog_files.py"])', 55 '<!@(["python", "scripts/list_frog_files.py"])',
47 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', 56 'scripts/bootstrap/frogsh_bootstrap_wrapper.py',
48 'frog.py', 57 'frog.py',
49 ], 58 ],
50 'outputs': [ 59 'outputs': [
51 '<(PRODUCT_DIR)/frog/bin/frogsh', 60 '<(PRODUCT_DIR)/frog/bin/frogsh',
52 ], 61 ],
53 'action': [ 62 'action': [
54 'python', 63 'python',
55 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', 64 'scripts/bootstrap/frogsh_bootstrap_wrapper.py',
56 '<(PRODUCT_DIR)', 65 '<(PRODUCT_DIR)',
57 ], 66 ],
58 'message': 'Generating frogsh file' 67 'message': 'Generating frogsh file'
59 }, 68 },
60 ], 69 ],
61 }, 70 },
62 ], 71 ],
63 } 72 }
OLDNEW
« no previous file with comments | « dart.gyp ('k') | frog/frogc.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698