| 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 'builtin_in_cc_file': '../bin/builtin_in.cc', | 7 'builtin_in_cc_file': '../bin/builtin_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_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', | 9 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', |
| 10 'snapshot_test_dat_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_test.dat', | 10 'snapshot_test_dat_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_test.dat', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 'OTHER_LDFLAGS': [ | 44 'OTHER_LDFLAGS': [ |
| 45 '-lcrypto', | 45 '-lcrypto', |
| 46 ], | 46 ], |
| 47 }, | 47 }, |
| 48 }, | 48 }, |
| 49 }], | 49 }], |
| 50 ['OS=="win"', { | 50 ['OS=="win"', { |
| 51 'sources/' : [ | 51 'sources/' : [ |
| 52 ['exclude', 'gdbjit.cc'], | 52 ['exclude', 'gdbjit.cc'], |
| 53 ], | 53 ], |
| 54 'link_settings': { | |
| 55 'libraries': [ '-llibeay32MT.lib' ], | |
| 56 }, | |
| 57 }]], | 54 }]], |
| 58 }, | 55 }, |
| 59 { | 56 { |
| 60 'target_name': 'libdart_lib_withcore', | 57 'target_name': 'libdart_lib_withcore', |
| 61 'type': 'static_library', | 58 'type': 'static_library', |
| 62 'dependencies': [ | 59 'dependencies': [ |
| 63 'generate_corelib_cc_file', | 60 'generate_corelib_cc_file', |
| 64 'generate_corelib_impl_cc_file', | 61 'generate_corelib_impl_cc_file', |
| 65 ], | 62 ], |
| 66 'includes': [ | 63 'includes': [ |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 '--include', 'INTENTIONALLY_LEFT_BLANK', | 205 '--include', 'INTENTIONALLY_LEFT_BLANK', |
| 209 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 206 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
| 210 '<(snapshot_test_dart_file)', | 207 '<(snapshot_test_dart_file)', |
| 211 ], | 208 ], |
| 212 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 209 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
| 213 }, | 210 }, |
| 214 ] | 211 ] |
| 215 }, | 212 }, |
| 216 ] | 213 ] |
| 217 } | 214 } |
| OLD | NEW |