| OLD | NEW |
| 1 # Copyright (c) 2011, 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_sources.gypi', |
| 22 ], | 23 ], |
| 23 'sources/': [ | 24 'sources/': [ |
| 24 # Exclude all _test.[cc|h] files. | 25 # Exclude all _test.[cc|h] files. |
| 25 ['exclude', '_test\\.cc|h$'], | 26 ['exclude', '_test\\.cc|h$'], |
| 26 ], | 27 ], |
| 27 'include_dirs': [ | 28 'include_dirs': [ |
| 28 '..', | 29 '..', |
| 29 ], | 30 ], |
| 30 'conditions': [ | 31 'conditions': [ |
| 31 ['OS=="linux"', { | 32 ['OS=="linux"', { |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 '--output', '<(snapshot_test_dat_file)', | 202 '--output', '<(snapshot_test_dat_file)', |
| 202 '--input_cc', '<(snapshot_test_in_dat_file)', | 203 '--input_cc', '<(snapshot_test_in_dat_file)', |
| 203 '<(snapshot_test_dart_file)', | 204 '<(snapshot_test_dart_file)', |
| 204 ], | 205 ], |
| 205 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 206 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
| 206 }, | 207 }, |
| 207 ] | 208 ] |
| 208 }, | 209 }, |
| 209 ] | 210 ] |
| 210 } | 211 } |
| OLD | NEW |