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

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

Issue 345223003: Add VM internal Dart class 'ClassID' used to manage class-ids of known classes. Next CL: add consta… (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 | « runtime/vm/intermediate_language.cc ('k') | no next file » | 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 'libgen_in_cc_file': '../lib/libgen_in.cc', 8 'libgen_in_cc_file': '../lib/libgen_in.cc',
9 'builtin_in_cc_file': '../bin/builtin_in.cc', 9 'builtin_in_cc_file': '../bin/builtin_in.cc',
10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc',
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 ], 118 ],
119 'includes': [ 119 'includes': [
120 '../lib/async_sources.gypi', 120 '../lib/async_sources.gypi',
121 '../lib/collection_sources.gypi', 121 '../lib/collection_sources.gypi',
122 '../lib/corelib_sources.gypi', 122 '../lib/corelib_sources.gypi',
123 '../lib/isolate_sources.gypi', 123 '../lib/isolate_sources.gypi',
124 '../lib/math_sources.gypi', 124 '../lib/math_sources.gypi',
125 '../lib/mirrors_sources.gypi', 125 '../lib/mirrors_sources.gypi',
126 '../lib/typed_data_sources.gypi', 126 '../lib/typed_data_sources.gypi',
127 '../lib/profiler_sources.gypi', 127 '../lib/profiler_sources.gypi',
128 '../lib/internal_sources.gypi',
128 ], 129 ],
129 'sources': [ 130 'sources': [
130 'bootstrap.cc', 131 'bootstrap.cc',
131 # Include generated source files. 132 # Include generated source files.
132 '<(async_cc_file)', 133 '<(async_cc_file)',
133 '<(async_patch_cc_file)', 134 '<(async_patch_cc_file)',
134 '<(corelib_cc_file)', 135 '<(corelib_cc_file)',
135 '<(corelib_patch_cc_file)', 136 '<(corelib_patch_cc_file)',
136 '<(collection_cc_file)', 137 '<(collection_cc_file)',
137 '<(collection_patch_cc_file)', 138 '<(collection_patch_cc_file)',
(...skipping 22 matching lines...) Expand all
160 'toolsets':['host', 'target'], 161 'toolsets':['host', 'target'],
161 'includes': [ 162 'includes': [
162 '../lib/async_sources.gypi', 163 '../lib/async_sources.gypi',
163 '../lib/collection_sources.gypi', 164 '../lib/collection_sources.gypi',
164 '../lib/corelib_sources.gypi', 165 '../lib/corelib_sources.gypi',
165 '../lib/isolate_sources.gypi', 166 '../lib/isolate_sources.gypi',
166 '../lib/math_sources.gypi', 167 '../lib/math_sources.gypi',
167 '../lib/mirrors_sources.gypi', 168 '../lib/mirrors_sources.gypi',
168 '../lib/typed_data_sources.gypi', 169 '../lib/typed_data_sources.gypi',
169 '../lib/profiler_sources.gypi', 170 '../lib/profiler_sources.gypi',
171 '../lib/internal_sources.gypi',
170 ], 172 ],
171 'sources': [ 173 'sources': [
172 'bootstrap_nocorelib.cc', 174 'bootstrap_nocorelib.cc',
173 ], 175 ],
174 'include_dirs': [ 176 'include_dirs': [
175 '..', 177 '..',
176 ], 178 ],
177 }, 179 },
178 { 180 {
179 'target_name': 'generate_async_cc_file', 181 'target_name': 'generate_async_cc_file',
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 '--table_name', 'service', 1029 '--table_name', 'service',
1028 '--root_prefix', 'vm/service/', 1030 '--root_prefix', 'vm/service/',
1029 '<@(_sources)' 1031 '<@(_sources)'
1030 ], 1032 ],
1031 'message': 'Generating ''<(service_cc_file)'' file.' 1033 'message': 'Generating ''<(service_cc_file)'' file.'
1032 }, 1034 },
1033 ] 1035 ]
1034 }, 1036 },
1035 ] 1037 ]
1036 } 1038 }
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698