| 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 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', | 7 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', |
| 8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', | 8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', |
| 9 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', | 9 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', |
| 10 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', | 10 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 'msvs_configuration_attributes': { | 287 'msvs_configuration_attributes': { |
| 288 'CharacterSet': '0', | 288 'CharacterSet': '0', |
| 289 }, | 289 }, |
| 290 }, | 290 }, |
| 291 }, | 291 }, |
| 292 }], | 292 }], |
| 293 ['OS=="linux"', { | 293 ['OS=="linux"', { |
| 294 'link_settings': { | 294 'link_settings': { |
| 295 'libraries': [ | 295 'libraries': [ |
| 296 '-ldl', | 296 '-ldl', |
| 297 '-lssl', | |
| 298 '-lcrypto', | |
| 299 ], | 297 ], |
| 300 }, | 298 }, |
| 301 }], | 299 }], |
| 302 ], | 300 ], |
| 303 }, | 301 }, |
| 304 { | 302 { |
| 305 'target_name': 'libdart_withcore', | 303 'target_name': 'libdart_withcore', |
| 306 'type': 'static_library', | 304 'type': 'static_library', |
| 307 'dependencies': [ | 305 'dependencies': [ |
| 308 'libdart_lib_withcore', | 306 'libdart_lib_withcore', |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 ['OS=="mac"', { | 553 ['OS=="mac"', { |
| 556 'xcode_settings': { | 554 'xcode_settings': { |
| 557 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 555 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 558 }, | 556 }, |
| 559 }], | 557 }], |
| 560 ], | 558 ], |
| 561 }, | 559 }, |
| 562 ], | 560 ], |
| 563 } | 561 } |
| 564 | 562 |
| OLD | NEW |