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

Unified Diff: dart-frog.gyp

Issue 8437081: Frog changes (in experimental) to get frog integrated into the test infrastructure. (Closed) Base URL: http://dart.googlecode.com/svn/experimental/frog/
Patch Set: '' Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.txt ('k') | frog.py » ('j') | scripts/buildbot_annotated_steps.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart-frog.gyp
===================================================================
--- dart-frog.gyp (revision 1140)
+++ dart-frog.gyp (working copy)
@@ -5,13 +5,10 @@
{
'targets': [
{
- # needed to make gyp happy in mac.
- 'target_name': 'noop',
- 'type': 'none',
- 'actions': [],
- },
- {
'target_name': 'frog',
+ 'dependencies': [
+ '../runtime/dart-runtime.gyp:dart_bin',
+ ],
'type': 'none',
'actions': [
{
@@ -20,18 +17,45 @@
'<!@(["python", "scripts/list_dart_files.py"])',
'scripts/bootstrap/frog_bootstrap_wrapper.py',
'scripts/bootstrap/frog_wrapper.py',
+ 'frog.py',
],
'outputs': [
- '<(PRODUCT_DIR)/dart_bin',
+ '<(PRODUCT_DIR)/frog/bin/frog',
],
'action': [
'python',
'scripts/bootstrap/frog_bootstrap_wrapper.py',
- '--js_out=<(PRODUCT_DIR)/dart_bin', '--', 'frog.dart',
+ '<(PRODUCT_DIR)/frog/bin/frog',
],
'message': 'Generating frog file'
},
],
},
+ {
+ 'target_name': 'frogsh',
+ 'dependencies': [
+ '../runtime/dart-runtime.gyp:dart_bin',
+ ],
+ 'type': 'none',
+ 'actions': [
+ {
+ 'action_name': 'generate_frogsh',
+ 'inputs': [
+ '<!@(["python", "scripts/list_dart_files.py"])',
+ 'scripts/bootstrap/frogsh_bootstrap_wrapper.py',
+ 'frog.py',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/frog/bin/frogsh',
+ ],
+ 'action': [
+ 'python',
+ 'scripts/bootstrap/frogsh_bootstrap_wrapper.py',
+ '--js_out=<(PRODUCT_DIR)/frog/bin/frogsh', '--', 'frog.dart',
+ ],
+ 'message': 'Generating frogsh file'
+ },
+ ],
+ },
],
}
« no previous file with comments | « README.txt ('k') | frog.py » ('j') | scripts/buildbot_annotated_steps.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698