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 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1063 '--inner_namespace', 'bin', | 1063 '--inner_namespace', 'bin', |
1064 '--table_name', 'service_bin', | 1064 '--table_name', 'service_bin', |
1065 '--root_prefix', 'bin/', | 1065 '--root_prefix', 'bin/', |
1066 '<@(_sources)' | 1066 '<@(_sources)' |
1067 ], | 1067 ], |
1068 'message': 'Generating ''<(resources_cc_file)'' file.' | 1068 'message': 'Generating ''<(resources_cc_file)'' file.' |
1069 }, | 1069 }, |
1070 ] | 1070 ] |
1071 }, | 1071 }, |
1072 { | 1072 { |
1073 'target_name': 'fuchsia_test', | |
1074 'type': 'executable', | |
1075 'dependencies': [ | |
1076 'libdart_nosnapshot', | |
1077 ], | |
1078 'include_dirs': [ | |
1079 '..', | |
1080 '../include', | |
1081 ], | |
1082 'sources': [ | |
1083 'fuchsia_test.cc', | |
1084 'log_android.cc', | |
1085 'log_fuchsia.cc', # TODO(zra): Move to libdart_builtin when ready. | |
1086 'log_linux.cc', | |
1087 'log_macos.cc', | |
1088 'log_win.cc', | |
1089 ], | |
1090 }, | |
1091 { | |
1092 # dart binary with a snapshot of corelibs built in. | 1073 # dart binary with a snapshot of corelibs built in. |
1093 'target_name': 'dart', | 1074 'target_name': 'dart', |
1094 'type': 'executable', | 1075 'type': 'executable', |
1095 'dependencies': [ | 1076 'dependencies': [ |
1096 'bin/zlib.gyp:zlib_dart', | 1077 'bin/zlib.gyp:zlib_dart', |
1097 'build_observatory#host', | 1078 'build_observatory#host', |
1098 'generate_observatory_assets_cc_file#host', | 1079 'generate_observatory_assets_cc_file#host', |
1099 'generate_resources_cc_file#host', | 1080 'generate_resources_cc_file#host', |
1100 'generate_snapshot_file#host', | 1081 'generate_snapshot_file#host', |
1101 'libdart', | 1082 'libdart', |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1428 }], | 1409 }], |
1429 ['OS=="linux"', { | 1410 ['OS=="linux"', { |
1430 'cflags': [ | 1411 'cflags': [ |
1431 '-fPIC', | 1412 '-fPIC', |
1432 ], | 1413 ], |
1433 }], | 1414 }], |
1434 ], | 1415 ], |
1435 }, | 1416 }, |
1436 ], | 1417 ], |
1437 } | 1418 } |
OLD | NEW |