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

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

Issue 10909189: Add gyp files to build NSS in Dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix remaining Dartium build errors Created 8 years, 1 month 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
« no previous file with comments | « no previous file | runtime/bin/net/nss.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', 9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc',
10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc',
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 'libraries': [ 299 'libraries': [
300 '-ldl', 300 '-ldl',
301 ], 301 ],
302 }, 302 },
303 }], 303 }],
304 ], 304 ],
305 }, 305 },
306 { 306 {
307 'target_name': 'libdart_io', 307 'target_name': 'libdart_io',
308 'type': 'static_library', 308 'type': 'static_library',
309 'dependencies': [
310 'nss',
Ivan Posva 2012/11/09 23:00:20 Can you list the different nss dependencies here?
311 ],
309 'include_dirs': [ 312 'include_dirs': [
310 '..', 313 '..',
311 ], 314 ],
312 'sources': [ 315 'sources': [
313 'io_natives.h', 316 'io_natives.h',
314 'io_natives.cc', 317 'io_natives.cc',
315 ], 318 ],
316 'includes': [ 319 'includes': [
317 'io_impl_sources.gypi', 320 'io_impl_sources.gypi',
318 ], 321 ],
319 'conditions': [ 322 'conditions': [
320 ['OS=="win"', { 323 ['OS=="win"', {
321 # TODO(antonm): fix the implementation. 324 # TODO(antonm): fix the implementation.
322 # Current implementation accepts char* strings 325 # Current implementation accepts char* strings
323 # and therefore fails to compile once _UNICODE is 326 # and therefore fails to compile once _UNICODE is
324 # enabled. That should be addressed using -A 327 # enabled. That should be addressed using -A
325 # versions of functions and adding necessary conversions. 328 # versions of functions and adding necessary conversions.
326 'configurations': { 329 'configurations': {
327 'Common_Base': { 330 'Common_Base': {
328 'msvs_configuration_attributes': { 331 'msvs_configuration_attributes': {
329 'CharacterSet': '0', 332 'CharacterSet': '0',
330 }, 333 },
331 }, 334 },
332 }, 335 },
333 }], 336 }],
334 ], 337 ],
335 }, 338 },
336 { 339 {
340 'target_name': 'nss',
341 'type': 'none',
342 'dependencies': [
343 'bin/net/nss.gyp:nss',
344 'bin/net/nss.gyp:nspr',
345 'bin/net/nss.gyp:nssckbi',
346 'bin/net/nss.gyp:nss_static',
347 'bin/net/ssl.gyp:libssl',
348 'bin/net/zlib.gyp:zlib',
349 'bin/net/sqlite.gyp:sqlite',
350 ],
351 'export_dependent_settings': [
352 'bin/net/nss.gyp:nss',
353 'bin/net/nss.gyp:nspr',
354 'bin/net/nss.gyp:nssckbi',
355 'bin/net/nss.gyp:nss_static',
356 'bin/net/ssl.gyp:libssl',
357 'bin/net/zlib.gyp:zlib',
358 'bin/net/sqlite.gyp:sqlite',
359 ],
360 },
361 {
337 'target_name': 'libdart_withcore', 362 'target_name': 'libdart_withcore',
338 'type': 'static_library', 363 'type': 'static_library',
339 'dependencies': [ 364 'dependencies': [
340 'libdart_lib_withcore', 365 'libdart_lib_withcore',
341 'libdart_vm', 366 'libdart_vm',
342 'libjscre', 367 'libjscre',
343 'libdouble_conversion', 368 'libdouble_conversion',
344 'generate_version_cc_file', 369 'generate_version_cc_file',
345 ], 370 ],
346 'include_dirs': [ 371 'include_dirs': [
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 ['OS=="mac"', { 628 ['OS=="mac"', {
604 'xcode_settings': { 629 'xcode_settings': {
605 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 630 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
606 }, 631 },
607 }], 632 }],
608 ], 633 ],
609 }, 634 },
610 ], 635 ],
611 } 636 }
612 637
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/net/nss.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698