| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'variables': { | 6 'variables': { |
| 7 # File lists shared with GN build. | 7 # File lists shared with GN build. |
| 8 'chrome_common_sources': [ | 8 'chrome_common_sources': [ |
| 9 'common/all_messages.h', | 9 'common/all_messages.h', |
| 10 'common/attrition_experiments.h', | 10 'common/attrition_experiments.h', |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 ['use_openssl_certs == 1 and OS != "android"', { | 588 ['use_openssl_certs == 1 and OS != "android"', { |
| 589 'dependencies': [ | 589 'dependencies': [ |
| 590 '<(DEPTH)/third_party/boringssl/boringssl.gyp:boringssl', | 590 '<(DEPTH)/third_party/boringssl/boringssl.gyp:boringssl', |
| 591 ], | 591 ], |
| 592 }, { | 592 }, { |
| 593 'sources!': [ | 593 'sources!': [ |
| 594 'common/net/x509_certificate_model_openssl.cc', | 594 'common/net/x509_certificate_model_openssl.cc', |
| 595 ], | 595 ], |
| 596 }], | 596 }], |
| 597 ['use_nss_certs == 1', { | 597 ['use_nss_certs == 1', { |
| 598 'sources': [ |
| 599 # GN version: //chrome/third_party/mozilla_security_manager |
| 600 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', |
| 601 'third_party/mozilla_security_manager/nsNSSCertHelper.h', |
| 602 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', |
| 603 'third_party/mozilla_security_manager/nsNSSCertificate.h', |
| 604 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp', |
| 605 'third_party/mozilla_security_manager/nsUsageArrayHelper.h', |
| 606 ], |
| 598 'dependencies': [ | 607 'dependencies': [ |
| 599 '../build/linux/system.gyp:ssl', | 608 '../build/linux/system.gyp:ssl', |
| 600 ], | 609 ], |
| 601 }, { | 610 }, { |
| 602 'sources!': [ | 611 'sources!': [ |
| 603 'common/net/x509_certificate_model_nss.cc', | 612 'common/net/x509_certificate_model_nss.cc', |
| 604 ], | 613 ], |
| 605 }], | 614 }], |
| 606 ['OS=="win"', { | 615 ['OS=="win"', { |
| 607 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 616 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 638 'sources': [ | 647 'sources': [ |
| 639 'common/resource_usage_reporter.mojom', | 648 'common/resource_usage_reporter.mojom', |
| 640 ], | 649 ], |
| 641 'dependencies': [ | 650 'dependencies': [ |
| 642 '../mojo/mojo_base.gyp:mojo_environment_chromium', | 651 '../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 643 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | 652 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 644 ], | 653 ], |
| 645 }, | 654 }, |
| 646 ], | 655 ], |
| 647 } | 656 } |
| OLD | NEW |