| 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 'corelib_in_cc_file': 'corelib_in.cc', | 7 'corelib_in_cc_file': 'corelib_in.cc', |
| 8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', | 8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', |
| 9 'corelib_impl_in_cc_file': 'corelib_impl_in.cc', | 9 'corelib_impl_in_cc_file': 'corelib_impl_in.cc', |
| 10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', | 10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', |
| 11 'snapshot_test_dat_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_test.dat', | 11 'snapshot_test_dat_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_test.dat', |
| 12 'snapshot_test_in_dat_file': 'snapshot_test_in.dat', | 12 'snapshot_test_in_dat_file': 'snapshot_test_in.dat', |
| 13 'snapshot_test_dart_file': 'snapshot_test.dart', | 13 'snapshot_test_dart_file': 'snapshot_test.dart', |
| 14 'cygwin_dir': '../../third_party/cygwin', | 14 'cygwin_dir': '../../third_party/cygwin', |
| 15 }, | 15 }, |
| 16 'targets': [ | 16 'targets': [ |
| 17 { | 17 { |
| 18 'target_name': 'libdart_vm', | 18 'target_name': 'libdart_vm', |
| 19 'type': 'static_library', | 19 'type': 'static_library', |
| 20 'includes': [ | 20 'includes': [ |
| 21 'vm_sources.gypi', | 21 'vm_sources.gypi', |
| 22 '../platform/platform_headers.gypi', |
| 22 '../platform/platform_sources.gypi', | 23 '../platform/platform_sources.gypi', |
| 23 ], | 24 ], |
| 24 'sources/': [ | 25 'sources/': [ |
| 25 # Exclude all _test.[cc|h] files. | 26 # Exclude all _test.[cc|h] files. |
| 26 ['exclude', '_test\\.cc|h$'], | 27 ['exclude', '_test\\.cc|h$'], |
| 27 ], | 28 ], |
| 28 'include_dirs': [ | 29 'include_dirs': [ |
| 29 '..', | 30 '..', |
| 30 ], | 31 ], |
| 31 'conditions': [ | 32 'conditions': [ |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 '--output', '<(snapshot_test_dat_file)', | 203 '--output', '<(snapshot_test_dat_file)', |
| 203 '--input_cc', '<(snapshot_test_in_dat_file)', | 204 '--input_cc', '<(snapshot_test_in_dat_file)', |
| 204 '<(snapshot_test_dart_file)', | 205 '<(snapshot_test_dart_file)', |
| 205 ], | 206 ], |
| 206 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 207 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
| 207 }, | 208 }, |
| 208 ] | 209 ] |
| 209 }, | 210 }, |
| 210 ] | 211 ] |
| 211 } | 212 } |
| OLD | NEW |