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

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

Issue 1581393008: Rename DART_PRECOMPILED -> DART_PRECOMPILED_RUNTIME (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: addressed comment Created 4 years, 11 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
« no previous file with comments | « dart.gyp ('k') | 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 '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
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
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 }
OLDNEW
« no previous file with comments | « dart.gyp ('k') | runtime/dart-runtime.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698