| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |