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

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

Issue 11086065: - Generate a version string based on the VERSION file. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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/main.cc » ('j') | runtime/tools/make_version.py » ('J')
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 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', 7 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc',
8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', 8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc',
9 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', 9 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc',
10 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', 10 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc',
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 ], 268 ],
269 }, 269 },
270 { 270 {
271 'target_name': 'libdart_withcore', 271 'target_name': 'libdart_withcore',
272 'type': 'static_library', 272 'type': 'static_library',
273 'dependencies': [ 273 'dependencies': [
274 'libdart_lib_withcore', 274 'libdart_lib_withcore',
275 'libdart_vm', 275 'libdart_vm',
276 'libjscre', 276 'libjscre',
277 'libdouble_conversion', 277 'libdouble_conversion',
278 'generate_version_cc_file',
278 ], 279 ],
279 'include_dirs': [ 280 'include_dirs': [
280 '..', 281 '..',
281 ], 282 ],
282 'sources': [ 283 'sources': [
283 '../include/dart_api.h', 284 '../include/dart_api.h',
284 '../include/dart_debugger_api.h', 285 '../include/dart_debugger_api.h',
285 '../vm/dart_api_impl.cc', 286 '../vm/dart_api_impl.cc',
286 '../vm/debugger_api_impl.cc', 287 '../vm/debugger_api_impl.cc',
288 '<(version_cc_file)',
287 ], 289 ],
288 }, 290 },
289 { 291 {
290 # Completely statically linked binary for generating snapshots. 292 # Completely statically linked binary for generating snapshots.
291 'target_name': 'gen_snapshot', 293 'target_name': 'gen_snapshot',
292 'type': 'executable', 294 'type': 'executable',
293 'dependencies': [ 295 'dependencies': [
294 'libdart_withcore', 296 'libdart_withcore',
295 'libdart_builtin', 297 'libdart_builtin',
296 ], 298 ],
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 ['OS=="mac"', { 519 ['OS=="mac"', {
518 'xcode_settings': { 520 'xcode_settings': {
519 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 521 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
520 }, 522 },
521 }], 523 }],
522 ], 524 ],
523 }, 525 },
524 ], 526 ],
525 } 527 }
526 528
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/main.cc » ('j') | runtime/tools/make_version.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698