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

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

Issue 328923002: Lazy loading of deferred libraries (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 '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 23 matching lines...) Expand all
34 'outputs': [ 34 'outputs': [
35 '<(builtin_cc_file)', 35 '<(builtin_cc_file)',
36 ], 36 ],
37 'action': [ 37 'action': [
38 'python', 38 'python',
39 'tools/gen_library_src_paths.py', 39 'tools/gen_library_src_paths.py',
40 '--output', '<(builtin_cc_file)', 40 '--output', '<(builtin_cc_file)',
41 '--input_cc', '<(builtin_in_cc_file)', 41 '--input_cc', '<(builtin_in_cc_file)',
42 '--include', 'bin/builtin.h', 42 '--include', 'bin/builtin.h',
43 '--var_name', 'dart::bin::Builtin::builtin_source_paths_', 43 '--var_name', 'dart::bin::Builtin::builtin_source_paths_',
44 '--library_name', 'dart:builtin', 44 '--library_name', 'dart:_builtin',
45 '<@(_sources)', 45 '<@(_sources)',
46 ], 46 ],
47 'message': 'Generating ''<(builtin_cc_file)'' file.' 47 'message': 'Generating ''<(builtin_cc_file)'' file.'
48 }, 48 },
49 ] 49 ]
50 }, 50 },
51 { 51 {
52 'target_name': 'generate_io_cc_file', 52 'target_name': 'generate_io_cc_file',
53 'type': 'none', 53 'type': 'none',
54 'toolsets':['host'], 54 'toolsets':['host'],
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 }], 583 }],
584 ['OS=="linux"', { 584 ['OS=="linux"', {
585 'cflags': [ 585 'cflags': [
586 '-fPIC', 586 '-fPIC',
587 ], 587 ],
588 }], 588 }],
589 ], 589 ],
590 }, 590 },
591 ], 591 ],
592 } 592 }
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