Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: chrome/chrome_common.gypi

Issue 145973020: Exclude IDS_CERT strings that are not used on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: newt's nits Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698