| 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 'chrome_common_sources': [ | 7 'chrome_common_sources': [ |
| 8 '../apps/app_shim/app_shim_launch.h', | 8 '../apps/app_shim/app_shim_launch.h', |
| 9 '../apps/app_shim/app_shim_messages.h', | 9 '../apps/app_shim/app_shim_messages.h', |
| 10 'common/all_messages.h', | 10 'common/all_messages.h', |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 ], | 646 ], |
| 647 ['os_posix != 1 or OS == "mac" or OS == "ios"', { | 647 ['os_posix != 1 or OS == "mac" or OS == "ios"', { |
| 648 'sources!': [ | 648 'sources!': [ |
| 649 'common/net/x509_certificate_model_nss.cc', | 649 'common/net/x509_certificate_model_nss.cc', |
| 650 'common/net/x509_certificate_model_openssl.cc', | 650 'common/net/x509_certificate_model_openssl.cc', |
| 651 ], | 651 ], |
| 652 }, | 652 }, |
| 653 ], | 653 ], |
| 654 ['OS == "android"', { | 654 ['OS == "android"', { |
| 655 'dependencies': [ | 655 'dependencies': [ |
| 656 '../third_party/openssl/openssl.gyp:openssl', | 656 '../third_party/boringssl/boringssl.gyp:boringssl', |
| 657 ], | 657 ], |
| 658 'sources!': [ | 658 'sources!': [ |
| 659 'common/net/x509_certificate_model.cc', | 659 'common/net/x509_certificate_model.cc', |
| 660 'common/net/x509_certificate_model_openssl.cc', | 660 'common/net/x509_certificate_model_openssl.cc', |
| 661 ], | 661 ], |
| 662 }], | 662 }], |
| 663 ['use_openssl==1', { | 663 ['use_openssl==1', { |
| 664 'sources!': [ | 664 'sources!': [ |
| 665 'common/net/x509_certificate_model_nss.cc', | 665 'common/net/x509_certificate_model_nss.cc', |
| 666 ], | 666 ], |
| (...skipping 25 matching lines...) Expand all Loading... |
| 692 'common/safe_browsing/csd.proto' | 692 'common/safe_browsing/csd.proto' |
| 693 ], | 693 ], |
| 694 'variables': { | 694 'variables': { |
| 695 'proto_in_dir': 'common/safe_browsing', | 695 'proto_in_dir': 'common/safe_browsing', |
| 696 'proto_out_dir': 'chrome/common/safe_browsing', | 696 'proto_out_dir': 'chrome/common/safe_browsing', |
| 697 }, | 697 }, |
| 698 'includes': [ '../build/protoc.gypi' ], | 698 'includes': [ '../build/protoc.gypi' ], |
| 699 }, | 699 }, |
| 700 ], | 700 ], |
| 701 } | 701 } |
| OLD | NEW |