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

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

Issue 9610002: remove node.js dependency by running the frog compiler in (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: no change Created 8 years, 9 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 | frog/scripts/bootstrap/build_frogpad_js.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 '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 },
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 '../runtime/dart-runtime.gyp:dart', 79 '../runtime/dart-runtime.gyp:dart',
80 ], 80 ],
81 'msvs_cygwin_dirs': ['<(cygwin_dir)'], 81 'msvs_cygwin_dirs': ['<(cygwin_dir)'],
82 }]], 82 }]],
83 'type': 'none', 83 'type': 'none',
84 'actions': [ 84 'actions': [
85 { 85 {
86 'action_name': 'generate_frogsh', 86 'action_name': 'generate_frogsh',
87 'inputs': [ 87 'inputs': [
88 '<!@(["python", "scripts/list_frog_files.py"])', 88 '<!@(["python", "scripts/list_frog_files.py"])',
89 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', 89 'scripts/bootstrap/build_frogpad_js.py',
90 'minfrog.dart', 90 '../tools/testing/frogpad/frogpad.dart',
91 '<(PRODUCT_DIR)/dart', 91 '<(PRODUCT_DIR)/dart',
92 ], 92 ],
93 'outputs': [ 93 'outputs': [
94 '<(PRODUCT_DIR)/frog/bin/frogsh', 94 '<(PRODUCT_DIR)/frog/bin/frogpad.js',
95 ], 95 ],
96 'action': [ 96 'action': [
97 'python', 97 'python',
98 'scripts/bootstrap/frogsh_bootstrap_wrapper.py', 98 'scripts/bootstrap/build_frogpad_js.py',
99 '<(PRODUCT_DIR)', 99 '<(PRODUCT_DIR)',
100 ], 100 ],
101 'message': 'Generating frogsh file' 101 'message': 'Generating frogpad.js file'
102 }, 102 },
103 ], 103 ],
104 }, 104 },
105 ], 105 ],
106 } 106 }
OLDNEW
« no previous file with comments | « no previous file | frog/scripts/bootstrap/build_frogpad_js.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698