| 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_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 Loading... |
| 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 } |
| OLD | NEW |