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

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

Issue 2151493003: Fix 'all' target (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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 | no next file » | 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 1051 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 'type': 'executable', 1062 'type': 'executable',
1063 'dependencies': [ 1063 'dependencies': [
1064 'libdart_nosnapshot', 1064 'libdart_nosnapshot',
1065 ], 1065 ],
1066 'include_dirs': [ 1066 'include_dirs': [
1067 '..', 1067 '..',
1068 '../include', 1068 '../include',
1069 ], 1069 ],
1070 'sources': [ 1070 'sources': [
1071 'fuchsia_test.cc', 1071 'fuchsia_test.cc',
1072 'log_android.cc',
1072 'log_fuchsia.cc', # TODO(zra): Move to libdart_builtin when ready. 1073 'log_fuchsia.cc', # TODO(zra): Move to libdart_builtin when ready.
1074 'log_linux.cc',
1075 'log_macos.cc',
1076 'log_win.cc',
1073 ], 1077 ],
1074 }, 1078 },
1075 { 1079 {
1076 # dart binary with a snapshot of corelibs built in. 1080 # dart binary with a snapshot of corelibs built in.
1077 'target_name': 'dart', 1081 'target_name': 'dart',
1078 'type': 'executable', 1082 'type': 'executable',
1079 'dependencies': [ 1083 'dependencies': [
1080 'bin/zlib.gyp:zlib_dart', 1084 'bin/zlib.gyp:zlib_dart',
1081 'build_observatory#host', 1085 'build_observatory#host',
1082 'generate_observatory_assets_cc_file#host', 1086 'generate_observatory_assets_cc_file#host',
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1412 }], 1416 }],
1413 ['OS=="linux"', { 1417 ['OS=="linux"', {
1414 'cflags': [ 1418 'cflags': [
1415 '-fPIC', 1419 '-fPIC',
1416 ], 1420 ],
1417 }], 1421 }],
1418 ], 1422 ],
1419 }, 1423 },
1420 ], 1424 ],
1421 } 1425 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698