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 16 matching lines...) Expand all Loading... |
27 ], | 27 ], |
28 'include_dirs': [ | 28 'include_dirs': [ |
29 '..', | 29 '..', |
30 ], | 30 ], |
31 'conditions': [ | 31 'conditions': [ |
32 ['OS=="linux"', { | 32 ['OS=="linux"', { |
33 'link_settings': { | 33 'link_settings': { |
34 'libraries': [ | 34 'libraries': [ |
35 '-lpthread', | 35 '-lpthread', |
36 '-lrt', | 36 '-lrt', |
37 '-lcrypto', | |
38 ], | 37 ], |
39 }, | 38 }, |
40 }], | 39 }], |
41 ['OS=="mac"', { | |
42 'link_settings': { | |
43 'xcode_settings': { | |
44 'OTHER_LDFLAGS': [ | |
45 '-lcrypto', | |
46 ], | |
47 }, | |
48 }, | |
49 }], | |
50 ['OS=="win"', { | 40 ['OS=="win"', { |
51 'sources/' : [ | 41 'sources/' : [ |
52 ['exclude', 'gdbjit.cc'], | 42 ['exclude', 'gdbjit.cc'], |
53 ], | 43 ], |
54 }]], | 44 }]], |
55 }, | 45 }, |
56 { | 46 { |
57 'target_name': 'libdart_lib_withcore', | 47 'target_name': 'libdart_lib_withcore', |
58 'type': 'static_library', | 48 'type': 'static_library', |
59 'dependencies': [ | 49 'dependencies': [ |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 '--include', 'INTENTIONALLY_LEFT_BLANK', | 195 '--include', 'INTENTIONALLY_LEFT_BLANK', |
206 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 196 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
207 '<(snapshot_test_dart_file)', | 197 '<(snapshot_test_dart_file)', |
208 ], | 198 ], |
209 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 199 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
210 }, | 200 }, |
211 ] | 201 ] |
212 }, | 202 }, |
213 ] | 203 ] |
214 } | 204 } |
OLD | NEW |