| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 'builtin_in_cc_file': 'builtin_in.cc', | 7 'builtin_in_cc_file': 'builtin_in.cc', |
| 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', | 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', |
| 9 'snapshot_in_cc_file': 'snapshot_in.cc', | 9 'snapshot_in_cc_file': 'snapshot_in.cc', |
| 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', | 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', |
| 11 'snapshot_cc_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.cc', | 11 'snapshot_cc_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.cc', |
| 12 'cygwin_dir': '../../third_party/cygwin', |
| 12 }, | 13 }, |
| 13 'targets': [ | 14 'targets': [ |
| 14 { | 15 { |
| 15 'target_name': 'generate_builtin_cc_file', | 16 'target_name': 'generate_builtin_cc_file', |
| 16 'type': 'none', | 17 'type': 'none', |
| 17 'conditions': [ | 18 'conditions': [ |
| 18 ['OS=="win"', { | 19 ['OS=="win"', { |
| 19 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], | 20 'msvs_cygwin_dirs': ['<(cygwin_dir)'], |
| 20 }], | 21 }], |
| 21 ], | 22 ], |
| 22 'sources': [ | 23 'sources': [ |
| 23 'builtin.dart', | 24 'builtin.dart', |
| 24 'buffer_list.dart', | 25 'buffer_list.dart', |
| 25 'directory.dart', | 26 'directory.dart', |
| 26 'directory_impl.dart', | 27 'directory_impl.dart', |
| 27 'eventhandler.dart', | 28 'eventhandler.dart', |
| 28 'file.dart', | 29 'file.dart', |
| 29 'file_impl.dart', | 30 'file_impl.dart', |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], | 165 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], |
| 165 }, | 166 }, |
| 166 }]], | 167 }]], |
| 167 }, | 168 }, |
| 168 { | 169 { |
| 169 # Generate snapshot file. | 170 # Generate snapshot file. |
| 170 'target_name': 'generate_snapshot_file', | 171 'target_name': 'generate_snapshot_file', |
| 171 'type': 'none', | 172 'type': 'none', |
| 172 'conditions': [ | 173 'conditions': [ |
| 173 ['OS=="win"', { | 174 ['OS=="win"', { |
| 174 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], | 175 'msvs_cygwin_dirs': ['<(cygwin_dir)'], |
| 175 }], | 176 }], |
| 176 ], | 177 ], |
| 177 'dependencies': [ | 178 'dependencies': [ |
| 178 'gen_snapshot_bin', | 179 'gen_snapshot_bin', |
| 179 ], | 180 ], |
| 180 'actions': [ | 181 'actions': [ |
| 181 { | 182 { |
| 182 'action_name': 'generate_snapshot_file', | 183 'action_name': 'generate_snapshot_file', |
| 183 'inputs': [ | 184 'inputs': [ |
| 184 '../tools/create_snapshot_file.py', | 185 '../tools/create_snapshot_file.py', |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 ]}], | 369 ]}], |
| 369 ['OS=="win"', { | 370 ['OS=="win"', { |
| 370 'link_settings': { | 371 'link_settings': { |
| 371 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], | 372 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], |
| 372 }, | 373 }, |
| 373 }], | 374 }], |
| 374 ], | 375 ], |
| 375 }, | 376 }, |
| 376 ], | 377 ], |
| 377 } | 378 } |
| OLD | NEW |