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

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

Issue 1766833002: - Remove loading of observatory assets from dart_bootstrap. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | runtime/bin/main.cc » ('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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698