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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 # Have the linker add all symbols to the dynamic symbol table | 622 # Have the linker add all symbols to the dynamic symbol table |
623 # so that extensions can look them up dynamically in the binary. | 623 # so that extensions can look them up dynamically in the binary. |
624 'ldflags': [ | 624 'ldflags': [ |
625 '-rdynamic', | 625 '-rdynamic', |
626 ], | 626 ], |
627 }, | 627 }, |
628 }, | 628 }, |
629 }, | 629 }, |
630 { | 630 { |
631 # dart binary for running precompiled snapshots without the compiler. | 631 # dart binary for running precompiled snapshots without the compiler. |
632 'target_name': 'dart_precompiled', | 632 'target_name': 'dart_precompiled_runtime', |
633 'type': 'executable', | 633 'type': 'executable', |
634 'dependencies': [ | 634 'dependencies': [ |
635 'libdart_precompiled', | 635 'libdart_precompiled_runtime', |
636 'libdart_builtin', | 636 'libdart_builtin', |
637 'libdart_io', | 637 'libdart_io', |
638 'build_observatory#host', | 638 'build_observatory#host', |
639 'generate_resources_cc_file#host', | 639 'generate_resources_cc_file#host', |
640 'generate_observatory_assets_cc_file#host', | 640 'generate_observatory_assets_cc_file#host', |
641 ], | 641 ], |
642 'include_dirs': [ | 642 'include_dirs': [ |
643 '..', | 643 '..', |
644 '../../third_party/', # Zlib | 644 '../../third_party/', # Zlib |
645 ], | 645 ], |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 }], | 892 }], |
893 ['OS=="linux"', { | 893 ['OS=="linux"', { |
894 'cflags': [ | 894 'cflags': [ |
895 '-fPIC', | 895 '-fPIC', |
896 ], | 896 ], |
897 }], | 897 }], |
898 ], | 898 ], |
899 }, | 899 }, |
900 ], | 900 ], |
901 } | 901 } |
OLD | NEW |