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

Side by Side Diff: chrome/chrome_common.gypi

Issue 3565006: Decouples certificates viewers from NSS to prepare support for OpenSSL. (Closed)
Patch Set: Comments / ProcessIDN Created 10 years, 2 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/net/DEPS » ('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) 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 'chrome_common_target': 0, 8 'chrome_common_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 'common/net/url_request_context_getter.cc', 438 'common/net/url_request_context_getter.cc',
439 'common/net/url_request_context_getter.h', 439 'common/net/url_request_context_getter.h',
440 'common/net/url_request_intercept_job.cc', 440 'common/net/url_request_intercept_job.cc',
441 'common/net/url_request_intercept_job.h', 441 'common/net/url_request_intercept_job.h',
442 'common/net/gaia/gaia_auth_consumer.h', 442 'common/net/gaia/gaia_auth_consumer.h',
443 'common/net/gaia/gaia_authenticator.cc', 443 'common/net/gaia/gaia_authenticator.cc',
444 'common/net/gaia/gaia_authenticator.h', 444 'common/net/gaia/gaia_authenticator.h',
445 'common/net/gaia/gaia_authenticator2.cc', 445 'common/net/gaia/gaia_authenticator2.cc',
446 'common/net/gaia/gaia_authenticator2.h', 446 'common/net/gaia/gaia_authenticator2.h',
447 'common/net/gaia/google_service_auth_error.h', 447 'common/net/gaia/google_service_auth_error.h',
448 'common/net/x509_certificate_model.cc',
449 'common/net/x509_certificate_model_nss.cc',
450 'common/net/x509_certificate_model_openssl.cc',
451 'common/net/x509_certificate_model.h',
448 ], 452 ],
449 'dependencies': [ 453 'dependencies': [
450 'chrome_resources', 454 'chrome_resources',
451 'chrome_strings', 455 'chrome_strings',
452 '../app/app.gyp:app_base', 456 '../app/app.gyp:app_base',
453 '../base/base.gyp:base', 457 '../base/base.gyp:base',
454 '../net/net.gyp:net_resources', 458 '../net/net.gyp:net_resources',
455 '../net/net.gyp:net', 459 '../net/net.gyp:net',
460 '../third_party/icu/icu.gyp:icui18n',
461 '../third_party/icu/icu.gyp:icuuc',
456 ], 462 ],
463 'conditions': [
464 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
465 'dependencies': [
466 '../build/linux/system.gyp:nss',
467 ],
468 },
469 { # else: OS is not in the above list
470 'sources!': [
471 'common/net/x509_certificate_model_nss.cc',
472 'common/net/x509_certificate_model_openssl.cc',
473 ],
474 },
475 ],
476 ['use_openssl==1', {
477 'sources!': [
478 'common/net/x509_certificate_model_nss.cc',
479 ],
480 },
481 { # else !use_openssl: remove the unneeded files
482 'sources!': [
483 'common/net/x509_certificate_model_openssl.cc',
484 ],
485 },
486 ],
487 ],
457 }, 488 },
458 ], 489 ],
459 'conditions': [ 490 'conditions': [
460 ['OS=="win"', { 491 ['OS=="win"', {
461 'targets': [ 492 'targets': [
462 { 493 {
463 'target_name': 'common_nacl_win64', 494 'target_name': 'common_nacl_win64',
464 'type': '<(library)', 495 'type': '<(library)',
465 'msvs_guid': '3AB5C5E9-470C-419B-A0AE-C7381FB632FA', 496 'msvs_guid': '3AB5C5E9-470C-419B-A0AE-C7381FB632FA',
466 'variables': { 497 'variables': {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 'configurations': { 544 'configurations': {
514 'Common_Base': { 545 'Common_Base': {
515 'msvs_target_platform': 'x64', 546 'msvs_target_platform': 'x64',
516 }, 547 },
517 }, 548 },
518 }, 549 },
519 ], 550 ],
520 }], 551 }],
521 ], 552 ],
522 } 553 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/net/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698