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

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

Issue 16973003: Split dart_api.h into multiple parts: (Closed) Base URL: http://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/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 # 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 'libjscre', 223 'libjscre',
224 'libdouble_conversion', 224 'libdouble_conversion',
225 'generate_version_cc_file', 225 'generate_version_cc_file',
226 ], 226 ],
227 'include_dirs': [ 227 'include_dirs': [
228 '..', 228 '..',
229 ], 229 ],
230 'sources': [ 230 'sources': [
231 '../include/dart_api.h', 231 '../include/dart_api.h',
232 '../include/dart_debugger_api.h', 232 '../include/dart_debugger_api.h',
233 '../include/dart_mirrors_api.h',
234 '../include/dart_native_api.h',
233 '../vm/dart_api_impl.cc', 235 '../vm/dart_api_impl.cc',
234 '../vm/debugger_api_impl.cc', 236 '../vm/debugger_api_impl.cc',
237 '../vm/mirrors_api_impl.cc',
238 '../vm/native_api_impl.cc',
235 '<(version_cc_file)', 239 '<(version_cc_file)',
236 ], 240 ],
237 'defines': [ 241 'defines': [
238 'DART_SHARED_LIB', 242 'DART_SHARED_LIB',
239 ], 243 ],
240 }, 244 },
241 { 245 {
242 # Completely statically linked binary for generating snapshots. 246 # Completely statically linked binary for generating snapshots.
243 'target_name': 'gen_snapshot', 247 'target_name': 'gen_snapshot',
244 'type': 'executable', 248 'type': 'executable',
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 '-fPIC', 685 '-fPIC',
682 ], 686 ],
683 }], 687 }],
684 ], 688 ],
685 }, 689 },
686 ], 690 ],
687 }], 691 }],
688 ], 692 ],
689 } 693 }
690 694
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