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

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

Issue 11369152: Disable NSS build targets in a Dartium build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add comma, comment. 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') | tools/gyp/all.gypi » ('J')
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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
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': [ 309 'dependencies': [
310 'nss_runtime_target', 310 'nss_runtime',
311 ], 311 ],
312 'include_dirs': [ 312 'include_dirs': [
313 '..', 313 '..',
314 ], 314 ],
315 'sources': [ 315 'sources': [
316 'io_natives.h', 316 'io_natives.h',
317 'io_natives.cc', 317 'io_natives.cc',
318 ], 318 ],
319 'includes': [ 319 'includes': [
320 'io_impl_sources.gypi', 320 'io_impl_sources.gypi',
321 ], 321 ],
322 'conditions': [ 322 'conditions': [
323 ['OS=="win"', { 323 ['OS=="win"', {
324 # TODO(antonm): fix the implementation. 324 # TODO(antonm): fix the implementation.
325 # Current implementation accepts char* strings 325 # Current implementation accepts char* strings
326 # and therefore fails to compile once _UNICODE is 326 # and therefore fails to compile once _UNICODE is
327 # enabled. That should be addressed using -A 327 # enabled. That should be addressed using -A
328 # versions of functions and adding necessary conversions. 328 # versions of functions and adding necessary conversions.
329 'configurations': { 329 'configurations': {
330 'Common_Base': { 330 'Common_Base': {
331 'msvs_configuration_attributes': { 331 'msvs_configuration_attributes': {
332 'CharacterSet': '0', 332 'CharacterSet': '0',
333 }, 333 },
334 }, 334 },
335 }, 335 },
336 }], 336 }],
337 ], 337 ],
338 }, 338 },
339 { 339 {
340 'target_name': 'nss_runtime_target', 340 'target_name': 'nss_runtime',
341 'type': 'none', 341 'type': 'none',
342 'dependencies': [ 342 'conditions': [[ 'in_dartium==0', {
343 'bin/net/nss.gyp:nss_dart', 343 'dependencies': [
344 'bin/net/nss.gyp:nspr_dart', 344 'bin/net/nss.gyp:nss_dart',
345 'bin/net/nss.gyp:nssckbi_dart', 345 'bin/net/nss.gyp:nspr_dart',
346 'bin/net/nss.gyp:nss_static_dart', 346 'bin/net/nss.gyp:nssckbi_dart',
347 'bin/net/ssl.gyp:libssl_dart', 347 'bin/net/nss.gyp:nss_static_dart',
348 'bin/net/zlib.gyp:zlib_dart', 348 'bin/net/ssl.gyp:libssl_dart',
349 'bin/net/sqlite.gyp:sqlite_dart', 349 'bin/net/zlib.gyp:zlib_dart',
350 ], 350 'bin/net/sqlite.gyp:sqlite_dart',
351 'export_dependent_settings': [ 351 ],
352 'bin/net/nss.gyp:nss_dart', 352 'export_dependent_settings': [
353 'bin/net/nss.gyp:nspr_dart', 353 'bin/net/nss.gyp:nss_dart',
354 'bin/net/nss.gyp:nssckbi_dart', 354 'bin/net/nss.gyp:nspr_dart',
355 'bin/net/nss.gyp:nss_static_dart', 355 'bin/net/nss.gyp:nssckbi_dart',
356 'bin/net/ssl.gyp:libssl_dart', 356 'bin/net/nss.gyp:nss_static_dart',
357 'bin/net/zlib.gyp:zlib_dart', 357 'bin/net/ssl.gyp:libssl_dart',
358 'bin/net/sqlite.gyp:sqlite_dart', 358 'bin/net/zlib.gyp:zlib_dart',
359 ], 359 'bin/net/sqlite.gyp:sqlite_dart',
360 ],
361 }]],
360 }, 362 },
361 { 363 {
362 'target_name': 'libdart_withcore', 364 'target_name': 'libdart_withcore',
363 'type': 'static_library', 365 'type': 'static_library',
364 'dependencies': [ 366 'dependencies': [
365 'libdart_lib_withcore', 367 'libdart_lib_withcore',
366 'libdart_vm', 368 'libdart_vm',
367 'libjscre', 369 'libjscre',
368 'libdouble_conversion', 370 'libdouble_conversion',
369 'generate_version_cc_file', 371 'generate_version_cc_file',
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 ['OS=="mac"', { 630 ['OS=="mac"', {
629 'xcode_settings': { 631 'xcode_settings': {
630 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 632 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
631 }, 633 },
632 }], 634 }],
633 ], 635 ],
634 }, 636 },
635 ], 637 ],
636 } 638 }
637 639
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/net/nss.gyp » ('j') | tools/gyp/all.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698