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

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

Issue 11415254: - Consolidate libdart and libdart_export by always exporting (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years 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/dart-runtime.gyp » ('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 '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 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', 9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc',
10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc',
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 ], 535 ],
536 'message': 'Generating ''<(snapshot_cc_file)'' file.' 536 'message': 'Generating ''<(snapshot_cc_file)'' file.'
537 }, 537 },
538 ] 538 ]
539 }, 539 },
540 { 540 {
541 # dart binary with a snapshot of corelibs built in. 541 # dart binary with a snapshot of corelibs built in.
542 'target_name': 'dart', 542 'target_name': 'dart',
543 'type': 'executable', 543 'type': 'executable',
544 'dependencies': [ 544 'dependencies': [
545 'libdart_export', 545 'libdart',
546 'libdart_builtin', 546 'libdart_builtin',
547 'libdart_io', 547 'libdart_io',
548 'generate_snapshot_file', 548 'generate_snapshot_file',
549 ], 549 ],
550 'include_dirs': [ 550 'include_dirs': [
551 '..', 551 '..',
552 ], 552 ],
553 'sources': [ 553 'sources': [
554 'main.cc', 554 'main.cc',
555 'builtin_nolib.cc', 555 'builtin_nolib.cc',
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 ['OS=="mac"', { 709 ['OS=="mac"', {
710 'xcode_settings': { 710 'xcode_settings': {
711 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 711 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
712 }, 712 },
713 }], 713 }],
714 ], 714 ],
715 }, 715 },
716 ], 716 ],
717 } 717 }
718 718
OLDNEW
« no previous file with comments | « no previous file | runtime/dart-runtime.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698