| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 ['exclude', '_test\\.cc|h$'], | 24 ['exclude', '_test\\.cc|h$'], |
| 25 ], | 25 ], |
| 26 'include_dirs': [ | 26 'include_dirs': [ |
| 27 '..', | 27 '..', |
| 28 ], | 28 ], |
| 29 'conditions': [ | 29 'conditions': [ |
| 30 ['OS=="linux"', { | 30 ['OS=="linux"', { |
| 31 'link_settings': { | 31 'link_settings': { |
| 32 'libraries': [ | 32 'libraries': [ |
| 33 '-lpthread', | 33 '-lpthread', |
| 34 '-lrt', |
| 34 '-lcrypto', | 35 '-lcrypto', |
| 35 ], | 36 ], |
| 36 }, | 37 }, |
| 37 }], | 38 }], |
| 38 ['OS=="mac"', { | 39 ['OS=="mac"', { |
| 39 'link_settings': { | 40 'link_settings': { |
| 40 'xcode_settings': { | 41 'xcode_settings': { |
| 41 'OTHER_LDFLAGS': [ | 42 'OTHER_LDFLAGS': [ |
| 42 '-lcrypto', | 43 '-lcrypto', |
| 43 ], | 44 ], |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 '--output', '<(snapshot_test_dat_file)', | 195 '--output', '<(snapshot_test_dat_file)', |
| 195 '--input_cc', '<(snapshot_test_in_dat_file)', | 196 '--input_cc', '<(snapshot_test_in_dat_file)', |
| 196 '<(snapshot_test_dart_file)', | 197 '<(snapshot_test_dart_file)', |
| 197 ], | 198 ], |
| 198 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' | 199 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' |
| 199 }, | 200 }, |
| 200 ] | 201 ] |
| 201 }, | 202 }, |
| 202 ] | 203 ] |
| 203 } | 204 } |
| OLD | NEW |