| OLD | NEW |
| 1 |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 # 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 | 3 # 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. | 4 # BSD-style license that can be found in the LICENSE file. |
| 4 | 5 |
| 5 { | 6 { |
| 6 'variables': { | 7 'variables': { |
| 7 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', | 8 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', |
| 8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', | 9 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', |
| 9 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', | 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', |
| 10 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', | 11 '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': { | 288 'msvs_configuration_attributes': { |
| 288 'CharacterSet': '0', | 289 'CharacterSet': '0', |
| 289 }, | 290 }, |
| 290 }, | 291 }, |
| 291 }, | 292 }, |
| 292 }], | 293 }], |
| 293 ['OS=="linux"', { | 294 ['OS=="linux"', { |
| 294 'link_settings': { | 295 'link_settings': { |
| 295 'libraries': [ | 296 'libraries': [ |
| 296 '-ldl', | 297 '-ldl', |
| 298 '-lssl', |
| 297 ], | 299 ], |
| 298 }, | 300 }, |
| 299 }], | 301 }], |
| 300 ], | 302 ], |
| 301 }, | 303 }, |
| 302 { | 304 { |
| 303 'target_name': 'libdart_withcore', | 305 'target_name': 'libdart_withcore', |
| 304 'type': 'static_library', | 306 'type': 'static_library', |
| 305 'dependencies': [ | 307 'dependencies': [ |
| 306 'libdart_lib_withcore', | 308 'libdart_lib_withcore', |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 ['OS=="mac"', { | 527 ['OS=="mac"', { |
| 526 'xcode_settings': { | 528 'xcode_settings': { |
| 527 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 529 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 528 }, | 530 }, |
| 529 }], | 531 }], |
| 530 ], | 532 ], |
| 531 }, | 533 }, |
| 532 ], | 534 ], |
| 533 } | 535 } |
| 534 | 536 |
| OLD | NEW |