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 'isolate_cc_file': '<(SHARED_INTERMEDIATE_DIR)/isolate_gen.cc', | 10 'isolate_cc_file': '<(SHARED_INTERMEDIATE_DIR)/isolate_gen.cc', |
(...skipping 17 matching lines...) Expand all Loading... |
28 ], | 28 ], |
29 'include_dirs': [ | 29 'include_dirs': [ |
30 '..', | 30 '..', |
31 ], | 31 ], |
32 'conditions': [ | 32 'conditions': [ |
33 ['OS=="linux"', { | 33 ['OS=="linux"', { |
34 'link_settings': { | 34 'link_settings': { |
35 'libraries': [ | 35 'libraries': [ |
36 '-lpthread', | 36 '-lpthread', |
37 '-lrt', | 37 '-lrt', |
38 '-lcrypto', | |
39 ], | 38 ], |
40 }, | 39 }, |
41 }], | 40 }], |
42 ['OS=="mac"', { | |
43 'link_settings': { | |
44 'xcode_settings': { | |
45 'OTHER_LDFLAGS': [ | |
46 '-lcrypto', | |
47 ], | |
48 }, | |
49 }, | |
50 }], | |
51 ['OS=="win"', { | 41 ['OS=="win"', { |
52 'sources/' : [ | 42 'sources/' : [ |
53 ['exclude', 'gdbjit.cc'], | 43 ['exclude', 'gdbjit.cc'], |
54 ], | 44 ], |
55 }]], | 45 }]], |
56 }, | 46 }, |
57 { | 47 { |
58 'target_name': 'libdart_lib_withcore', | 48 'target_name': 'libdart_lib_withcore', |
59 'type': 'static_library', | 49 'type': 'static_library', |
60 'dependencies': [ | 50 'dependencies': [ |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 '--include', 'INTENTIONALLY_LEFT_BLANK', | 243 '--include', 'INTENTIONALLY_LEFT_BLANK', |
254 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', | 244 '--var_name', 'INTENTIONALLY_LEFT_BLANK_TOO', |
255 '<(snapshot_test_dart_file)', | 245 '<(snapshot_test_dart_file)', |
256 ], | 246 ], |
257 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 247 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
258 }, | 248 }, |
259 ] | 249 ] |
260 }, | 250 }, |
261 ] | 251 ] |
262 } | 252 } |
OLD | NEW |