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

Side by Side Diff: runtime/bin/bin.gypi

Issue 15966002: Add support for loading scripts from http (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 | runtime/bin/builtin.dart » ('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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 # We place most generated source files in LIB_DIR (rather than, say 7 # We place most generated source files in LIB_DIR (rather than, say
8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids 8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids
9 # two problems. First, if a generated source file has architecture specific 9 # two problems. First, if a generated source file has architecture specific
10 # code, we'll get two different files in two different directories. Second, 10 # code, we'll get two different files in two different directories. Second,
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 ], 244 ],
245 }, 245 },
246 { 246 {
247 # Completely statically linked binary for generating snapshots. 247 # Completely statically linked binary for generating snapshots.
248 'target_name': 'gen_snapshot', 248 'target_name': 'gen_snapshot',
249 'type': 'executable', 249 'type': 'executable',
250 'toolsets':['host'], 250 'toolsets':['host'],
251 'dependencies': [ 251 'dependencies': [
252 'libdart_withcore', 252 'libdart_withcore',
253 'libdart_builtin', 253 'libdart_builtin',
254 'libdart_io',
254 ], 255 ],
255 'include_dirs': [ 256 'include_dirs': [
256 '..', 257 '..',
257 ], 258 ],
258 'sources': [ 259 'sources': [
259 'gen_snapshot.cc', 260 'gen_snapshot.cc',
260 # Very limited native resolver provided. 261 # Very limited native resolver provided.
261 'builtin_gen_snapshot.cc', 262 'builtin_gen_snapshot.cc',
262 'builtin.cc', 263 'builtin.cc',
263 'builtin.h', 264 'builtin.h',
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 '-fPIC', 682 '-fPIC',
682 ], 683 ],
683 }], 684 }],
684 ], 685 ],
685 }, 686 },
686 ], 687 ],
687 }], 688 }],
688 ], 689 ],
689 } 690 }
690 691
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/builtin.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698