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

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
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 'cygwin_dir': '../third_party/cygwin',
8 'msvs_cygwin_dirs': ['<(cygwin_dir)'],
dgrove 2011/12/20 01:53:29 ditto.
9 },
6 'targets': [ 10 'targets': [
7 { 11 {
8 'target_name': 'frog', 12 'target_name': 'frog',
9 'dependencies': [ 13 'dependencies': [
10 '../runtime/dart-runtime.gyp:dart', 14 '../runtime/dart-runtime.gyp:dart',
11 '../third_party/v8/src/d8.gyp:d8', 15 '<!@(["python", "scripts/list_frog_dependencies.py"])'
12 ], 16 ],
13 'type': 'none', 17 'type': 'none',
14 'actions': [ 18 'actions': [
15 { 19 {
16 'action_name': 'generate_frog', 20 'action_name': 'generate_frog',
17 'inputs': [ 21 'inputs': [
18 '<!@(["python", "scripts/list_frog_files.py"])', 22 '<!@(["python", "scripts/list_frog_files.py"])',
19 'scripts/bootstrap/frog_bootstrap_wrapper.py', 23 'scripts/bootstrap/frog_bootstrap_wrapper.py',
20 'scripts/bootstrap/frog_wrapper.py', 24 'scripts/bootstrap/frog_wrapper.py',
21 'frog.py', 25 'frog.py',
22 ], 26 ],
23 'outputs': [ 27 'outputs': [
24 '<(PRODUCT_DIR)/frog/bin/frog', 28 '<(PRODUCT_DIR)/frog/bin/frog',
25 ], 29 ],
26 'action': [ 30 'action': [
27 'python', 31 'python',
28 'scripts/bootstrap/frog_bootstrap_wrapper.py', 32 'scripts/bootstrap/frog_bootstrap_wrapper.py',
29 '<(PRODUCT_DIR)', 33 '<(PRODUCT_DIR)',
30 ], 34 ],
31 'message': 'Generating frog file' 35 'message': 'Generating frog file'
32 }, 36 },
33 ], 37 ],
34 }, 38 },
35 { 39 {
36 'target_name': 'frogsh', 40 'target_name': 'frogsh',
37 'dependencies': [ 41 'dependencies': [
38 '../runtime/dart-runtime.gyp:dart', 42 '../runtime/dart-runtime.gyp:dart',
39 '../third_party/v8/src/d8.gyp:d8', 43 '<!@(["python", "scripts/list_frog_dependencies.py"])',
40 ], 44 ],
41 'type': 'none', 45 'type': 'none',
42 'actions': [ 46 'actions': [
43 { 47 {
44 'action_name': 'generate_frogsh', 48 'action_name': 'generate_frogsh',
45 'inputs': [ 49 'inputs': [
46 '<!@(["python", "scripts/list_frog_files.py"])', 50 '<!@(["python", "scripts/list_frog_files.py"])',
47 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', 51 'scripts/bootstrap/frogsh_bootstrap_wrapper.py',
48 'frog.py', 52 'frog.py',
49 ], 53 ],
50 'outputs': [ 54 'outputs': [
51 '<(PRODUCT_DIR)/frog/bin/frogsh', 55 '<(PRODUCT_DIR)/frog/bin/frogsh',
52 ], 56 ],
53 'action': [ 57 'action': [
54 'python', 58 'python',
55 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', 59 'scripts/bootstrap/frogsh_bootstrap_wrapper.py',
56 '<(PRODUCT_DIR)', 60 '<(PRODUCT_DIR)',
57 ], 61 ],
58 'message': 'Generating frogsh file' 62 'message': 'Generating frogsh file'
59 }, 63 },
60 ], 64 ],
61 }, 65 },
62 ], 66 ],
63 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698