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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 419013003: Replace c/b/nss_context by a KeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Flattened components/cert_database folders. Created 6 years, 1 month 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/browser/ui/webui/net_internals/net_internals_ui.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 1725 matching lines...) Expand 10 before | Expand all | Expand 10 after
1736 'browser/plugins/plugin_installer.cc', 1736 'browser/plugins/plugin_installer.cc',
1737 'browser/plugins/plugin_installer.h', 1737 'browser/plugins/plugin_installer.h',
1738 'browser/plugins/plugin_installer_observer.cc', 1738 'browser/plugins/plugin_installer_observer.cc',
1739 'browser/plugins/plugin_installer_observer.h', 1739 'browser/plugins/plugin_installer_observer.h',
1740 'browser/plugins/plugins_resource_service.cc', 1740 'browser/plugins/plugins_resource_service.cc',
1741 'browser/plugins/plugins_resource_service.h', 1741 'browser/plugins/plugins_resource_service.h',
1742 ], 1742 ],
1743 'chrome_browser_nss_sources': [ 1743 'chrome_browser_nss_sources': [
1744 'browser/certificate_manager_model.cc', 1744 'browser/certificate_manager_model.cc',
1745 'browser/certificate_manager_model.h', 1745 'browser/certificate_manager_model.h',
1746 'browser/net/nss_context.cc', 1746 'browser/net/cert_database_service_factory.cc',
1747 'browser/net/nss_context.h', 1747 'browser/net/cert_database_service_factory_chromeos.cc',
1748 'browser/net/nss_context_chromeos.cc', 1748 'browser/net/cert_database_service_factory_linux.cc',
1749 'browser/net/nss_context_linux.cc', 1749 'browser/net/cert_database_service_factory.h',
1750 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', 1750 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp',
1751 'third_party/mozilla_security_manager/nsNSSCertHelper.h', 1751 'third_party/mozilla_security_manager/nsNSSCertHelper.h',
1752 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', 1752 'third_party/mozilla_security_manager/nsNSSCertificate.cpp',
1753 'third_party/mozilla_security_manager/nsNSSCertificate.h', 1753 'third_party/mozilla_security_manager/nsNSSCertificate.h',
1754 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp', 1754 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp',
1755 'third_party/mozilla_security_manager/nsUsageArrayHelper.h', 1755 'third_party/mozilla_security_manager/nsUsageArrayHelper.h',
1756 ], 1756 ],
1757 # Used on all platforms when notifications are enabled. 1757 # Used on all platforms when notifications are enabled.
1758 'chrome_browser_notifications_sources': [ 1758 'chrome_browser_notifications_sources': [
1759 'browser/notifications/desktop_notification_infobar_delegate.cc', 1759 'browser/notifications/desktop_notification_infobar_delegate.cc',
(...skipping 1454 matching lines...) Expand 10 before | Expand all | Expand 10 after
3214 'app/chrome_crash_reporter_client.cc', 3214 'app/chrome_crash_reporter_client.cc',
3215 'app/chrome_crash_reporter_client.h', 3215 'app/chrome_crash_reporter_client.h',
3216 ], 3216 ],
3217 'dependencies': [ 3217 'dependencies': [
3218 '../components/components.gyp:breakpad_host', 3218 '../components/components.gyp:breakpad_host',
3219 '../components/components.gyp:crash_component', 3219 '../components/components.gyp:crash_component',
3220 ], 3220 ],
3221 }], 3221 }],
3222 ['use_nss==1', { 3222 ['use_nss==1', {
3223 'sources': [ '<@(chrome_browser_nss_sources)' ], 3223 'sources': [ '<@(chrome_browser_nss_sources)' ],
3224 'dependencies': [
3225 '../components/components.gyp:cert_database',
3226 ],
3224 'conditions': [ 3227 'conditions': [
3225 ['chromeos==1', { 3228 ['desktop_linux==0', {
3226 'sources!': [ 'browser/net/nss_context_linux.cc' ], 3229 'sources!': [
3227 }, { # chromeos==0 3230 'browser/net/cert_database_service_factory_linux.cc'
3228 'sources!': [ 'browser/net/nss_context_chromeos.cc' ], 3231 ],
3229 }], 3232 }],
3230 ], 3233 ],
3231 }], 3234 }],
3232 ['notifications==1', { 3235 ['notifications==1', {
3233 'sources': [ '<@(chrome_browser_notifications_sources)' ], 3236 'sources': [ '<@(chrome_browser_notifications_sources)' ],
3234 'conditions': [ 3237 'conditions': [
3235 ['OS!="android"', { 3238 ['OS!="android"', {
3236 'sources': [ 3239 'sources': [
3237 '<@(chrome_browser_non_android_notifications_sources)', 3240 '<@(chrome_browser_non_android_notifications_sources)',
3238 ], 3241 ],
3239 }], 3242 }],
3240 ], 3243 ],
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
3612 'variables': { 3615 'variables': {
3613 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3616 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3614 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3617 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3615 }, 3618 },
3616 'includes': [ '../build/protoc.gypi' ] 3619 'includes': [ '../build/protoc.gypi' ]
3617 }, 3620 },
3618 ], 3621 ],
3619 },], 3622 },],
3620 ], 3623 ],
3621 } 3624 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/net_internals/net_internals_ui.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698