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

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

Issue 125103004: Move service into VM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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/dartutils.h » ('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 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)',
8 8
9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc',
10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc',
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 '../tools/create_resources.py', 362 '../tools/create_resources.py',
363 '<@(_sources)', 363 '<@(_sources)',
364 ], 364 ],
365 'outputs': [ 365 'outputs': [
366 '<(resources_cc_file)', 366 '<(resources_cc_file)',
367 ], 367 ],
368 'action': [ 368 'action': [
369 'python', 369 'python',
370 'tools/create_resources.py', 370 'tools/create_resources.py',
371 '--output', '<(resources_cc_file)', 371 '--output', '<(resources_cc_file)',
372 '--outer_namespace', 'dart',
373 '--inner_namespace', 'bin',
374 '--table_name', 'service_bin',
372 '--root_prefix', 'bin/', 375 '--root_prefix', 'bin/',
373 '<@(_sources)' 376 '<@(_sources)'
374 ], 377 ],
375 'message': 'Generating ''<(resources_cc_file)'' file.' 378 'message': 'Generating ''<(resources_cc_file)'' file.'
376 }, 379 },
377 ] 380 ]
378 }, 381 },
379 { 382 {
380 # dart binary with a snapshot of corelibs built in. 383 # dart binary with a snapshot of corelibs built in.
381 'target_name': 'dart', 384 'target_name': 'dart',
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 }], 635 }],
633 ['OS=="linux"', { 636 ['OS=="linux"', {
634 'cflags': [ 637 'cflags': [
635 '-fPIC', 638 '-fPIC',
636 ], 639 ],
637 }], 640 }],
638 ], 641 ],
639 }, 642 },
640 ], 643 ],
641 } 644 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/dartutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698