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

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: Added cert_database namespace. Created 6 years, 2 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
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 1720 matching lines...) Expand 10 before | Expand all | Expand 10 after
1731 'browser/plugins/plugin_installer.cc', 1731 'browser/plugins/plugin_installer.cc',
1732 'browser/plugins/plugin_installer.h', 1732 'browser/plugins/plugin_installer.h',
1733 'browser/plugins/plugin_installer_observer.cc', 1733 'browser/plugins/plugin_installer_observer.cc',
1734 'browser/plugins/plugin_installer_observer.h', 1734 'browser/plugins/plugin_installer_observer.h',
1735 'browser/plugins/plugins_resource_service.cc', 1735 'browser/plugins/plugins_resource_service.cc',
1736 'browser/plugins/plugins_resource_service.h', 1736 'browser/plugins/plugins_resource_service.h',
1737 ], 1737 ],
1738 'chrome_browser_nss_sources': [ 1738 'chrome_browser_nss_sources': [
1739 'browser/certificate_manager_model.cc', 1739 'browser/certificate_manager_model.cc',
1740 'browser/certificate_manager_model.h', 1740 'browser/certificate_manager_model.h',
1741 'browser/net/nss_context.cc', 1741 'browser/net/cert_database_service_factory.cc',
1742 'browser/net/nss_context.h', 1742 'browser/net/cert_database_service_factory.h',
1743 'browser/net/nss_context_chromeos.cc',
1744 'browser/net/nss_context_linux.cc',
1745 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', 1743 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp',
1746 'third_party/mozilla_security_manager/nsNSSCertHelper.h', 1744 'third_party/mozilla_security_manager/nsNSSCertHelper.h',
1747 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', 1745 'third_party/mozilla_security_manager/nsNSSCertificate.cpp',
1748 'third_party/mozilla_security_manager/nsNSSCertificate.h', 1746 'third_party/mozilla_security_manager/nsNSSCertificate.h',
1749 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp', 1747 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp',
1750 'third_party/mozilla_security_manager/nsUsageArrayHelper.h', 1748 'third_party/mozilla_security_manager/nsUsageArrayHelper.h',
1751 ], 1749 ],
1752 # Used on all platforms when notifications are enabled. 1750 # Used on all platforms when notifications are enabled.
1753 'chrome_browser_notifications_sources': [ 1751 'chrome_browser_notifications_sources': [
1754 'browser/notifications/desktop_notification_infobar_delegate.cc', 1752 'browser/notifications/desktop_notification_infobar_delegate.cc',
(...skipping 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after
3186 'app/chrome_crash_reporter_client.cc', 3184 'app/chrome_crash_reporter_client.cc',
3187 'app/chrome_crash_reporter_client.h', 3185 'app/chrome_crash_reporter_client.h',
3188 ], 3186 ],
3189 'dependencies': [ 3187 'dependencies': [
3190 '../components/components.gyp:breakpad_host', 3188 '../components/components.gyp:breakpad_host',
3191 '../components/components.gyp:crash_component', 3189 '../components/components.gyp:crash_component',
3192 ], 3190 ],
3193 }], 3191 }],
3194 ['use_nss==1', { 3192 ['use_nss==1', {
3195 'sources': [ '<@(chrome_browser_nss_sources)' ], 3193 'sources': [ '<@(chrome_browser_nss_sources)' ],
3196 'conditions': [ 3194 'dependencies': [
3197 ['chromeos==1', { 3195 '../components/components.gyp:cert_database',
3198 'sources!': [ 'browser/net/nss_context_linux.cc' ],
3199 }, { # chromeos==0
3200 'sources!': [ 'browser/net/nss_context_chromeos.cc' ],
3201 }],
3202 ], 3196 ],
3203 }], 3197 }],
3204 ['notifications==1', { 3198 ['notifications==1', {
3205 'sources': [ '<@(chrome_browser_notifications_sources)' ], 3199 'sources': [ '<@(chrome_browser_notifications_sources)' ],
3206 'conditions': [ 3200 'conditions': [
3207 ['OS!="android"', { 3201 ['OS!="android"', {
3208 'sources': [ 3202 'sources': [
3209 '<@(chrome_browser_non_android_notifications_sources)', 3203 '<@(chrome_browser_non_android_notifications_sources)',
3210 ], 3204 ],
3211 }], 3205 }],
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
3600 'variables': { 3594 'variables': {
3601 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3595 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3602 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3596 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3603 }, 3597 },
3604 'includes': [ '../build/protoc.gypi' ] 3598 'includes': [ '../build/protoc.gypi' ]
3605 }, 3599 },
3606 ], 3600 ],
3607 },], 3601 },],
3608 ], 3602 ],
3609 } 3603 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698