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

Side by Side Diff: dart/site/try/build_try.gyp

Issue 197923002: Mock up code completion. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Too many changes to summarize in one line. Created 6 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
OLDNEW
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, 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 3 # BSD-style license that can be found in the LICENSE
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'try_site', 8 'target_name': 'try_site',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 # action is executed. 69 # action is executed.
70 '<(PRODUCT_DIR)/dart-sdk/README', 70 '<(PRODUCT_DIR)/dart-sdk/README',
71 71
72 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "src"])', 72 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "src"])',
73 ], 73 ],
74 'outputs': [ 74 'outputs': [
75 '<(SHARED_INTERMEDIATE_DIR)/leap.dart.js', 75 '<(SHARED_INTERMEDIATE_DIR)/leap.dart.js',
76 ], 76 ],
77 'action': [ 77 'action': [
78 '<(PRODUCT_DIR)/dart-sdk/bin/dart2js', 78 '<(PRODUCT_DIR)/dart-sdk/bin/dart2js',
79 '-v', 79 '-p../../sdk/lib/_internal/',
80 '-Denable_ir=false', 80 '-Denable_ir=false',
81 'src/leap.dart', 81 'src/leap.dart',
82 '-o<(SHARED_INTERMEDIATE_DIR)/leap.dart.js', 82 '-o<(SHARED_INTERMEDIATE_DIR)/leap.dart.js',
83 ], 83 ],
84 }, 84 },
85 { 85 {
86 'action_name': 'nossl_appcache', 86 'action_name': 'nossl_appcache',
87 'message': 'Creating nossl.appcache', 87 'message': 'Creating nossl.appcache',
88 'inputs': [ 88 'inputs': [
89 'add_time_stamp.py', 89 'add_time_stamp.py',
(...skipping 22 matching lines...) Expand all
112 'files': [ 112 'files': [
113 'app.yaml', 113 'app.yaml',
114 '<@(try_dart_static_files)', 114 '<@(try_dart_static_files)',
115 '<(SHARED_INTERMEDIATE_DIR)/nossl.appcache', 115 '<(SHARED_INTERMEDIATE_DIR)/nossl.appcache',
116 ], 116 ],
117 }, 117 },
118 ], 118 ],
119 }, 119 },
120 ], 120 ],
121 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698