Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(578)

Side by Side Diff: runtime/bin/bin.gypi

Issue 10704159: Start adding TLS (SSL) sockets to dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Stub out win32 and macos platforms. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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',
297 ], 298 ],
298 }, 299 },
299 }], 300 }],
300 ], 301 ],
301 }, 302 },
302 { 303 {
303 'target_name': 'libdart_withcore', 304 'target_name': 'libdart_withcore',
304 'type': 'static_library', 305 'type': 'static_library',
305 'dependencies': [ 306 'dependencies': [
306 'libdart_lib_withcore', 307 'libdart_lib_withcore',
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 ['OS=="mac"', { 526 ['OS=="mac"', {
526 'xcode_settings': { 527 'xcode_settings': {
527 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 528 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
528 }, 529 },
529 }], 530 }],
530 ], 531 ],
531 }, 532 },
532 ], 533 ],
533 } 534 }
534 535
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/builtin_impl_sources.gypi » ('j') | runtime/bin/builtin_impl_sources.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698