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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 401623006: Extract ScopedTestNSSDB from nss_util. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed function call that was missed during renaming. Created 6 years, 5 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 1811 matching lines...) Expand 10 before | Expand all | Expand 10 after
1822 'browser/plugins/plugin_installer.h', 1822 'browser/plugins/plugin_installer.h',
1823 'browser/plugins/plugin_installer_observer.cc', 1823 'browser/plugins/plugin_installer_observer.cc',
1824 'browser/plugins/plugin_installer_observer.h', 1824 'browser/plugins/plugin_installer_observer.h',
1825 'browser/plugins/plugins_resource_service.cc', 1825 'browser/plugins/plugins_resource_service.cc',
1826 'browser/plugins/plugins_resource_service.h', 1826 'browser/plugins/plugins_resource_service.h',
1827 ], 1827 ],
1828 'chrome_browser_nss_sources': [ 1828 'chrome_browser_nss_sources': [
1829 'browser/certificate_manager_model.cc', 1829 'browser/certificate_manager_model.cc',
1830 'browser/certificate_manager_model.h', 1830 'browser/certificate_manager_model.h',
1831 'browser/net/nss_context.cc', 1831 'browser/net/nss_context.cc',
1832 'browser/net/nss_context.h',
1832 'browser/net/nss_context_chromeos.cc', 1833 'browser/net/nss_context_chromeos.cc',
1833 'browser/net/nss_context.h',
1834 'browser/net/nss_context_linux.cc', 1834 'browser/net/nss_context_linux.cc',
1835 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', 1835 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp',
1836 'third_party/mozilla_security_manager/nsNSSCertHelper.h', 1836 'third_party/mozilla_security_manager/nsNSSCertHelper.h',
1837 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', 1837 'third_party/mozilla_security_manager/nsNSSCertificate.cpp',
1838 'third_party/mozilla_security_manager/nsNSSCertificate.h', 1838 'third_party/mozilla_security_manager/nsNSSCertificate.h',
1839 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp', 1839 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp',
1840 'third_party/mozilla_security_manager/nsUsageArrayHelper.h', 1840 'third_party/mozilla_security_manager/nsUsageArrayHelper.h',
1841 ], 1841 ],
1842 # Used on all platforms when notifications are enabled. 1842 # Used on all platforms when notifications are enabled.
1843 'chrome_browser_notifications_sources': [ 1843 'chrome_browser_notifications_sources': [
(...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after
3204 'app/chrome_breakpad_client.cc', 3204 'app/chrome_breakpad_client.cc',
3205 'app/chrome_breakpad_client.h', 3205 'app/chrome_breakpad_client.h',
3206 ], 3206 ],
3207 'dependencies': [ 3207 'dependencies': [
3208 '../components/components.gyp:breakpad_component', 3208 '../components/components.gyp:breakpad_component',
3209 '../components/components.gyp:breakpad_host', 3209 '../components/components.gyp:breakpad_host',
3210 ], 3210 ],
3211 }], 3211 }],
3212 ['use_nss==1', { 3212 ['use_nss==1', {
3213 'sources': [ '<@(chrome_browser_nss_sources)' ], 3213 'sources': [ '<@(chrome_browser_nss_sources)' ],
3214 'conditions': [
3215 ['chromeos==1', {
3216 'sources!': [ 'browser/net/nss_context_linux.cc' ],
3217 }, { # chromeos==0
3218 'sources!': [ 'browser/net/nss_context_chromeos.cc' ],
3219 }],
3220 ],
3214 }], 3221 }],
3215 ['notifications==1', { 3222 ['notifications==1', {
3216 'sources': [ '<@(chrome_browser_notifications_sources)' ], 3223 'sources': [ '<@(chrome_browser_notifications_sources)' ],
3217 'conditions': [ 3224 'conditions': [
3218 ['OS!="android"', { 3225 ['OS!="android"', {
3219 'sources': [ 3226 'sources': [
3220 '<@(chrome_browser_non_android_notifications_sources)', 3227 '<@(chrome_browser_non_android_notifications_sources)',
3221 ], 3228 ],
3222 }], 3229 }],
3223 ], 3230 ],
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
3604 'package_name': 'org/chromium/chrome/browser', 3611 'package_name': 'org/chromium/chrome/browser',
3605 'template_deps': ['browser/android/tab_load_status.h'], 3612 'template_deps': ['browser/android/tab_load_status.h'],
3606 }, 3613 },
3607 'includes': [ '../build/android/java_cpp_template.gypi' ], 3614 'includes': [ '../build/android/java_cpp_template.gypi' ],
3608 }, 3615 },
3609 ], 3616 ],
3610 }, 3617 },
3611 ], 3618 ],
3612 ], 3619 ],
3613 } 3620 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698