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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'common', | 8 'target_name': 'common', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { | 10 'variables': { |
(...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
686 'sources!': [ | 686 'sources!': [ |
687 'common/net/x509_certificate_model_nss.cc', | 687 'common/net/x509_certificate_model_nss.cc', |
688 'common/net/x509_certificate_model_openssl.cc', | 688 'common/net/x509_certificate_model_openssl.cc', |
689 ], | 689 ], |
690 }, | 690 }, |
691 ], | 691 ], |
692 ['OS == "android"', { | 692 ['OS == "android"', { |
693 'dependencies': [ | 693 'dependencies': [ |
694 '../third_party/openssl/openssl.gyp:openssl', | 694 '../third_party/openssl/openssl.gyp:openssl', |
695 ], | 695 ], |
696 }, | 696 'sources!': [ |
697 ], | 697 'common/net/x509_certificate_model.cc', |
| 698 ], |
| 699 }], |
698 ['use_openssl==1', { | 700 ['use_openssl==1', { |
699 'sources!': [ | 701 'sources!': [ |
700 'common/net/x509_certificate_model_nss.cc', | 702 'common/net/x509_certificate_model_nss.cc', |
701 ], | 703 ], |
702 }, | 704 }, |
703 { # else !use_openssl: remove the unneeded files | 705 { # else !use_openssl: remove the unneeded files |
704 'sources!': [ | 706 'sources!': [ |
705 'common/net/x509_certificate_model_openssl.cc', | 707 'common/net/x509_certificate_model_openssl.cc', |
706 ], | 708 ], |
707 }, | 709 }, |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 'common/metrics/proto/user_action_event.proto', | 748 'common/metrics/proto/user_action_event.proto', |
747 ], | 749 ], |
748 'variables': { | 750 'variables': { |
749 'proto_in_dir': 'common/metrics/proto', | 751 'proto_in_dir': 'common/metrics/proto', |
750 'proto_out_dir': 'chrome/common/metrics/proto', | 752 'proto_out_dir': 'chrome/common/metrics/proto', |
751 }, | 753 }, |
752 'includes': [ '../build/protoc.gypi' ], | 754 'includes': [ '../build/protoc.gypi' ], |
753 }, | 755 }, |
754 ], | 756 ], |
755 } | 757 } |
OLD | NEW |