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

Side by Side Diff: frog/dart-frog.gyp

Issue 8597016: - Remove uses of the dart_bin binary. (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/frog.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) 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': 'frog', 8 'target_name': 'frog',
9 'dependencies': [ 9 'dependencies': [
10 '../runtime/dart-runtime.gyp:dart_bin', 10 '../runtime/dart-runtime.gyp:dart',
11 '../third_party/v8/src/d8.gyp:d8', 11 '../third_party/v8/src/d8.gyp:d8',
12 ], 12 ],
13 'type': 'none', 13 'type': 'none',
14 'actions': [ 14 'actions': [
15 { 15 {
16 'action_name': 'generate_frog', 16 'action_name': 'generate_frog',
17 'inputs': [ 17 'inputs': [
18 '<!@(["python", "scripts/list_frog_files.py"])', 18 '<!@(["python", "scripts/list_frog_files.py"])',
19 'scripts/bootstrap/frog_bootstrap_wrapper.py', 19 'scripts/bootstrap/frog_bootstrap_wrapper.py',
20 'scripts/bootstrap/frog_wrapper.py', 20 'scripts/bootstrap/frog_wrapper.py',
21 'frog.py', 21 'frog.py',
22 ], 22 ],
23 'outputs': [ 23 'outputs': [
24 '<(PRODUCT_DIR)/frog/bin/frog', 24 '<(PRODUCT_DIR)/frog/bin/frog',
25 ], 25 ],
26 'action': [ 26 'action': [
27 'python', 27 'python',
28 'scripts/bootstrap/frog_bootstrap_wrapper.py', 28 'scripts/bootstrap/frog_bootstrap_wrapper.py',
29 '<(PRODUCT_DIR)/frog/bin/frog', 29 '<(PRODUCT_DIR)/frog/bin/frog',
30 ], 30 ],
31 'message': 'Generating frog file' 31 'message': 'Generating frog file'
32 }, 32 },
33 ], 33 ],
34 }, 34 },
35 { 35 {
36 'target_name': 'frogsh', 36 'target_name': 'frogsh',
37 'dependencies': [ 37 'dependencies': [
38 '../runtime/dart-runtime.gyp:dart_bin', 38 '../runtime/dart-runtime.gyp:dart',
39 '../third_party/v8/src/d8.gyp:d8', 39 '../third_party/v8/src/d8.gyp:d8',
40 ], 40 ],
41 'type': 'none', 41 'type': 'none',
42 'actions': [ 42 'actions': [
43 { 43 {
44 'action_name': 'generate_frogsh', 44 'action_name': 'generate_frogsh',
45 'inputs': [ 45 'inputs': [
46 '<!@(["python", "scripts/list_frog_files.py"])', 46 '<!@(["python", "scripts/list_frog_files.py"])',
47 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', 47 'scripts/bootstrap/frogsh_bootstrap_wrapper.py',
48 'frog.py', 48 'frog.py',
49 ], 49 ],
50 'outputs': [ 50 'outputs': [
51 '<(PRODUCT_DIR)/frog/bin/frogsh', 51 '<(PRODUCT_DIR)/frog/bin/frogsh',
52 ], 52 ],
53 'action': [ 53 'action': [
54 'python', 54 'python',
55 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', 55 'scripts/bootstrap/frogsh_bootstrap_wrapper.py',
56 '--out=<(PRODUCT_DIR)/frog/bin/frogsh', 'frog.dart', 56 '--out=<(PRODUCT_DIR)/frog/bin/frogsh', 'frog.dart',
57 ], 57 ],
58 'message': 'Generating frogsh file' 58 'message': 'Generating frogsh file'
59 }, 59 },
60 ], 60 ],
61 }, 61 },
62 ], 62 ],
63 } 63 }
OLDNEW
« no previous file with comments | « dart.gyp ('k') | frog/frog.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698