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 1051 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_fuchsia.cc', # TODO(zra): Move to libdart_builtin when ready. |
1072 ], | 1073 ], |
1073 }, | 1074 }, |
1074 { | 1075 { |
1075 # dart binary with a snapshot of corelibs built in. | 1076 # dart binary with a snapshot of corelibs built in. |
1076 'target_name': 'dart', | 1077 'target_name': 'dart', |
1077 'type': 'executable', | 1078 'type': 'executable', |
1078 'dependencies': [ | 1079 'dependencies': [ |
1079 'bin/zlib.gyp:zlib_dart', | 1080 'bin/zlib.gyp:zlib_dart', |
1080 'build_observatory#host', | 1081 'build_observatory#host', |
1081 'generate_observatory_assets_cc_file#host', | 1082 'generate_observatory_assets_cc_file#host', |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1411 }], | 1412 }], |
1412 ['OS=="linux"', { | 1413 ['OS=="linux"', { |
1413 'cflags': [ | 1414 'cflags': [ |
1414 '-fPIC', | 1415 '-fPIC', |
1415 ], | 1416 ], |
1416 }], | 1417 }], |
1417 ], | 1418 ], |
1418 }, | 1419 }, |
1419 ], | 1420 ], |
1420 } | 1421 } |
OLD | NEW |