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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 1838273003: MD Settings: Hooking up native certificate manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Spaces. Created 4 years, 8 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
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 # There are two sections of sources: 7 # There are two sections of sources:
8 # * "Platform"-based sources (OS, toolkit, etc.) 8 # * "Platform"-based sources (OS, toolkit, etc.)
9 # * Feature/directory-based sources (e.g., history, printing) 9 # * Feature/directory-based sources (e.g., history, printing)
10 10
(...skipping 2795 matching lines...) Expand 10 before | Expand all | Expand 10 after
2806 'chrome_browser_ui_nss_sources': [ 2806 'chrome_browser_ui_nss_sources': [
2807 'browser/ui/crypto_module_delegate_nss.cc', 2807 'browser/ui/crypto_module_delegate_nss.cc',
2808 'browser/ui/crypto_module_delegate_nss.h', 2808 'browser/ui/crypto_module_delegate_nss.h',
2809 'browser/ui/crypto_module_password_dialog_nss.cc', 2809 'browser/ui/crypto_module_password_dialog_nss.cc',
2810 'browser/ui/crypto_module_password_dialog_nss.h', 2810 'browser/ui/crypto_module_password_dialog_nss.h',
2811 'browser/ui/webui/options/certificate_manager_handler.cc', 2811 'browser/ui/webui/options/certificate_manager_handler.cc',
2812 'browser/ui/webui/options/certificate_manager_handler.h', 2812 'browser/ui/webui/options/certificate_manager_handler.h',
2813 'browser/ui/webui/settings/certificates_handler.cc', 2813 'browser/ui/webui/settings/certificates_handler.cc',
2814 'browser/ui/webui/settings/certificates_handler.h', 2814 'browser/ui/webui/settings/certificates_handler.h',
2815 ], 2815 ],
2816 'chrome_browser_ui_non_nss_sources': [
2817 'browser/ui/webui/settings/native_certificates_handler.cc',
2818 'browser/ui/webui/settings/native_certificates_handler.h',
2819 ],
2816 'chrome_browser_ui_omnibox_non_mobile_sources': [ 2820 'chrome_browser_ui_omnibox_non_mobile_sources': [
2817 'browser/ui/omnibox/alternate_nav_infobar_delegate.cc', 2821 'browser/ui/omnibox/alternate_nav_infobar_delegate.cc',
2818 'browser/ui/omnibox/alternate_nav_infobar_delegate.h', 2822 'browser/ui/omnibox/alternate_nav_infobar_delegate.h',
2819 'browser/ui/omnibox/chrome_omnibox_client.cc', 2823 'browser/ui/omnibox/chrome_omnibox_client.cc',
2820 'browser/ui/omnibox/chrome_omnibox_client.h', 2824 'browser/ui/omnibox/chrome_omnibox_client.h',
2821 'browser/ui/omnibox/chrome_omnibox_edit_controller.cc', 2825 'browser/ui/omnibox/chrome_omnibox_edit_controller.cc',
2822 'browser/ui/omnibox/chrome_omnibox_edit_controller.h', 2826 'browser/ui/omnibox/chrome_omnibox_edit_controller.h',
2823 'browser/ui/omnibox/chrome_omnibox_navigation_observer.cc', 2827 'browser/ui/omnibox/chrome_omnibox_navigation_observer.cc',
2824 'browser/ui/omnibox/chrome_omnibox_navigation_observer.h', 2828 'browser/ui/omnibox/chrome_omnibox_navigation_observer.h',
2825 'browser/ui/omnibox/clipboard_utils.cc', 2829 'browser/ui/omnibox/clipboard_utils.cc',
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
3123 ], 3127 ],
3124 }], 3128 }],
3125 ['ui_compositor_image_transport==1', { 3129 ['ui_compositor_image_transport==1', {
3126 'dependencies': [ 3130 'dependencies': [
3127 '../ui/gl/gl.gyp:gl', 3131 '../ui/gl/gl.gyp:gl',
3128 ], 3132 ],
3129 }], 3133 }],
3130 ['use_nss_certs==1', { 3134 ['use_nss_certs==1', {
3131 'sources': [ '<@(chrome_browser_ui_nss_sources)' ], 3135 'sources': [ '<@(chrome_browser_ui_nss_sources)' ],
3132 }], 3136 }],
3137 ['OS=="win" or OS=="mac"', {
3138 'sources': [ '<@(chrome_browser_ui_non_nss_sources)' ],
3139 }],
3133 ['enable_themes==0', { 3140 ['enable_themes==0', {
3134 'sources!': [ 3141 'sources!': [
3135 'browser/ui/webui/theme_source.cc', 3142 'browser/ui/webui/theme_source.cc',
3136 ], 3143 ],
3137 }], 3144 }],
3138 ['enable_print_preview==1', { 3145 ['enable_print_preview==1', {
3139 'sources': [ '<@(chrome_browser_ui_print_preview_sources)' ], 3146 'sources': [ '<@(chrome_browser_ui_print_preview_sources)' ],
3140 }], 3147 }],
3141 ['OS=="android"', { 3148 ['OS=="android"', {
3142 'dependencies': [ 3149 'dependencies': [
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
3374 ], 3381 ],
3375 'sources': [ 3382 'sources': [
3376 '<@(chrome_browser_ui_non_mobile_sources)', 3383 '<@(chrome_browser_ui_non_mobile_sources)',
3377 '<@(chrome_browser_ui_omnibox_non_mobile_sources)', 3384 '<@(chrome_browser_ui_omnibox_non_mobile_sources)',
3378 ], 3385 ],
3379 }], 3386 }],
3380 ], 3387 ],
3381 }, 3388 },
3382 ], 3389 ],
3383 } 3390 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698