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

Side by Side Diff: base/base.gypi

Issue 2322008: Use SSLClientSocketNSS on Mac OS X. ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Add build/linux/system.gyp to the CL. Created 10 years, 6 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
« no previous file with comments | « no previous file | base/nss_util.cc » ('j') | build/all.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 # For now, just test the *BSD platforms enough to exclude them. 324 # For now, just test the *BSD platforms enough to exclude them.
325 # Subsequent changes will include them further. 325 # Subsequent changes will include them further.
326 [ 'OS != "freebsd"', { 326 [ 'OS != "freebsd"', {
327 'sources/': [ ['exclude', '_freebsd\\.cc$'] ], 327 'sources/': [ ['exclude', '_freebsd\\.cc$'] ],
328 }, 328 },
329 ], 329 ],
330 [ 'OS != "openbsd"', { 330 [ 'OS != "openbsd"', {
331 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], 331 'sources/': [ ['exclude', '_openbsd\\.cc$'] ],
332 }, 332 },
333 ], 333 ],
334 [ 'OS == "mac"', { 334 [ 'OS != "mac"', {
335 'sources!': [
336 # TODO(wtc): Remove nss_util.{cc,h} when http://crbug.com/30689
337 # is fixed.
338 'nss_util.cc',
339 'nss_util.h',
340 ],
341 }, { # OS != "mac"
342 'sources!': [ 335 'sources!': [
343 'crypto/cssm_init.cc', 336 'crypto/cssm_init.cc',
344 'crypto/cssm_init.h', 337 'crypto/cssm_init.h',
345 ], 338 ],
346 },], 339 },],
347 [ 'OS == "win"', { 340 [ 'OS == "win"', {
348 'include_dirs': [ 341 'include_dirs': [
349 '<(DEPTH)/third_party/wtl/include', 342 '<(DEPTH)/third_party/wtl/include',
350 ], 343 ],
351 'sources!': [ 344 'sources!': [
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 'libraries': [ 438 'libraries': [
446 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 439 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
447 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', 440 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
448 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 441 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
449 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 442 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
450 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', 443 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
451 '$(SDKROOT)/System/Library/Frameworks/Security.framework', 444 '$(SDKROOT)/System/Library/Frameworks/Security.framework',
452 ], 445 ],
453 }, 446 },
454 },], 447 },],
455 [ 'OS == "win"', { 448 [ 'OS == "mac" or OS == "win"', {
456 'dependencies': [ 449 'dependencies': [
457 '../third_party/nss/nss.gyp:nss', 450 '../third_party/nss/nss.gyp:nss',
458 ], 451 ],
459 }, { # OS != "win" 452 },],
453 [ 'OS != "win"', {
460 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], 454 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'],
461 'sources!': [ 455 'sources!': [
462 'third_party/purify/pure_api.c', 456 'third_party/purify/pure_api.c',
463 'base_drag_source.cc', 457 'base_drag_source.cc',
464 'base_drop_target.cc', 458 'base_drop_target.cc',
465 'cpu.cc', 459 'cpu.cc',
466 'debug_on_start.cc', 460 'debug_on_start.cc',
467 'event_recorder.cc', 461 'event_recorder.cc',
468 'file_version_info.cc', 462 'file_version_info.cc',
469 'iat_patch.cc', 463 'iat_patch.cc',
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 'third_party/xdg_mime/xdgmimemagic.c', 654 'third_party/xdg_mime/xdgmimemagic.c',
661 'third_party/xdg_mime/xdgmimemagic.h', 655 'third_party/xdg_mime/xdgmimemagic.h',
662 'third_party/xdg_mime/xdgmimeparent.c', 656 'third_party/xdg_mime/xdgmimeparent.c',
663 'third_party/xdg_mime/xdgmimeparent.h', 657 'third_party/xdg_mime/xdgmimeparent.h',
664 ], 658 ],
665 }, 659 },
666 ], 660 ],
667 }], 661 }],
668 ], 662 ],
669 } 663 }
OLDNEW
« no previous file with comments | « no previous file | base/nss_util.cc » ('j') | build/all.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698