| 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 ], | |
| 607 'dependencies': [ | 598 'dependencies': [ |
| 608 '../build/linux/system.gyp:ssl', | 599 '../build/linux/system.gyp:ssl', |
| 609 ], | 600 ], |
| 610 }, { | 601 }, { |
| 611 'sources!': [ | 602 'sources!': [ |
| 612 'common/net/x509_certificate_model_nss.cc', | 603 'common/net/x509_certificate_model_nss.cc', |
| 613 ], | 604 ], |
| 614 }], | 605 }], |
| 615 ['OS=="win"', { | 606 ['OS=="win"', { |
| 616 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 607 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 647 'sources': [ | 638 'sources': [ |
| 648 'common/resource_usage_reporter.mojom', | 639 'common/resource_usage_reporter.mojom', |
| 649 ], | 640 ], |
| 650 'dependencies': [ | 641 'dependencies': [ |
| 651 '../mojo/mojo_base.gyp:mojo_environment_chromium', | 642 '../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 652 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | 643 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 653 ], | 644 ], |
| 654 }, | 645 }, |
| 655 ], | 646 ], |
| 656 } | 647 } |
| OLD | NEW |