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

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

Issue 887413003: Port type arguments to new RPC protocol (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/observatory/lib/src/service/object.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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 'include_dirs': [ 559 'include_dirs': [
560 '..', 560 '..',
561 ], 561 ],
562 'sources': [ 562 'sources': [
563 'main.cc', 563 'main.cc',
564 'builtin_common.cc', 564 'builtin_common.cc',
565 'builtin_natives.cc', 565 'builtin_natives.cc',
566 'builtin_nolib.cc', 566 'builtin_nolib.cc',
567 'builtin.h', 567 'builtin.h',
568 'io_natives.h', 568 'io_natives.h',
569 'vmservice.h',
570 'vmservice_impl.cc', 569 'vmservice_impl.cc',
571 'vmservice_impl.h', 570 'vmservice_impl.h',
572 '<(snapshot_cc_file)', 571 '<(snapshot_cc_file)',
573 '<(resources_cc_file)', 572 '<(resources_cc_file)',
574 ], 573 ],
575 'conditions': [ 574 'conditions': [
576 ['OS=="win"', { 575 ['OS=="win"', {
577 'link_settings': { 576 'link_settings': {
578 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], 577 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ],
579 }, 578 },
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 'include_dirs': [ 610 'include_dirs': [
612 '..', 611 '..',
613 ], 612 ],
614 'sources': [ 613 'sources': [
615 'main.cc', 614 'main.cc',
616 'builtin_common.cc', 615 'builtin_common.cc',
617 'builtin_natives.cc', 616 'builtin_natives.cc',
618 'builtin.cc', 617 'builtin.cc',
619 'builtin.h', 618 'builtin.h',
620 'io_natives.h', 619 'io_natives.h',
621 'vmservice.h',
622 'vmservice_impl.cc', 620 'vmservice_impl.cc',
623 'vmservice_impl.h', 621 'vmservice_impl.h',
624 # Include generated source files. 622 # Include generated source files.
625 '<(builtin_cc_file)', 623 '<(builtin_cc_file)',
626 '<(io_cc_file)', 624 '<(io_cc_file)',
627 '<(io_patch_cc_file)', 625 '<(io_patch_cc_file)',
628 '<(bootstrap_resources_cc_file)', 626 '<(bootstrap_resources_cc_file)',
629 'snapshot_empty.cc', 627 'snapshot_empty.cc',
630 ], 628 ],
631 'conditions': [ 629 'conditions': [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 'include_dirs': [ 663 'include_dirs': [
666 '..', 664 '..',
667 ], 665 ],
668 'sources': [ 666 'sources': [
669 'main.cc', 667 'main.cc',
670 'builtin_common.cc', 668 'builtin_common.cc',
671 'builtin_natives.cc', 669 'builtin_natives.cc',
672 'builtin.cc', 670 'builtin.cc',
673 'builtin.h', 671 'builtin.h',
674 'io_natives.h', 672 'io_natives.h',
675 'vmservice.h',
676 'vmservice_impl.cc', 673 'vmservice_impl.cc',
677 'vmservice_impl.h', 674 'vmservice_impl.h',
678 # Include generated source files. 675 # Include generated source files.
679 '<(builtin_cc_file)', 676 '<(builtin_cc_file)',
680 '<(io_cc_file)', 677 '<(io_cc_file)',
681 '<(io_patch_cc_file)', 678 '<(io_patch_cc_file)',
682 '<(resources_cc_file)', 679 '<(resources_cc_file)',
683 'snapshot_empty.cc', 680 'snapshot_empty.cc',
684 ], 681 ],
685 'conditions': [ 682 'conditions': [
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 }], 802 }],
806 ['OS=="linux"', { 803 ['OS=="linux"', {
807 'cflags': [ 804 'cflags': [
808 '-fPIC', 805 '-fPIC',
809 ], 806 ],
810 }], 807 }],
811 ], 808 ],
812 }, 809 },
813 ], 810 ],
814 } 811 }
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698