OLD | NEW |
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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
737 # dart binary built for the host. It does not use a snapshot | 737 # dart binary built for the host. It does not use a snapshot |
738 # and does not include Observatory. | 738 # and does not include Observatory. |
739 'target_name': 'dart_bootstrap', | 739 'target_name': 'dart_bootstrap', |
740 'type': 'executable', | 740 'type': 'executable', |
741 'toolsets':['host'], | 741 'toolsets':['host'], |
742 'dependencies': [ | 742 'dependencies': [ |
743 'libdart_nosnapshot', | 743 'libdart_nosnapshot', |
744 'libdart_builtin', | 744 'libdart_builtin', |
745 'libdart_io', | 745 'libdart_io', |
746 'generate_resources_cc_file#host', | 746 'generate_resources_cc_file#host', |
747 'bin/zlib.gyp:zlib_dart', | |
748 ], | 747 ], |
749 'include_dirs': [ | 748 'include_dirs': [ |
750 '..', | 749 '..', |
751 '../../third_party/', # Zlib | 750 '../../third_party/', # Zlib |
752 ], | 751 ], |
753 'sources': [ | 752 'sources': [ |
754 'main.cc', | 753 'main.cc', |
755 'builtin_common.cc', | 754 'builtin_common.cc', |
756 'builtin_natives.cc', | 755 'builtin_natives.cc', |
757 'builtin.cc', | 756 'builtin.cc', |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
903 }], | 902 }], |
904 ['OS=="linux"', { | 903 ['OS=="linux"', { |
905 'cflags': [ | 904 'cflags': [ |
906 '-fPIC', | 905 '-fPIC', |
907 ], | 906 ], |
908 }], | 907 }], |
909 ], | 908 ], |
910 }, | 909 }, |
911 ], | 910 ], |
912 } | 911 } |
OLD | NEW |