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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 7840041: Refactor some more BrowserMain code. Move core code that's required by all embedders to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 9 years, 3 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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 4137 matching lines...) Expand 10 before | Expand all | Expand 10 after
4148 ['use_openssl==0', { 4148 ['use_openssl==0', {
4149 'sources': [ 4149 'sources': [
4150 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', 4150 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp',
4151 'third_party/mozilla_security_manager/nsNSSCertHelper.h', 4151 'third_party/mozilla_security_manager/nsNSSCertHelper.h',
4152 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', 4152 'third_party/mozilla_security_manager/nsNSSCertificate.cpp',
4153 'third_party/mozilla_security_manager/nsNSSCertificate.h', 4153 'third_party/mozilla_security_manager/nsNSSCertificate.h',
4154 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp', 4154 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp',
4155 'third_party/mozilla_security_manager/nsUsageArrayHelper.h', 4155 'third_party/mozilla_security_manager/nsUsageArrayHelper.h',
4156 ], 4156 ],
4157 }], 4157 }],
4158 ['linux_sandbox_path != ""', {
4159 'defines': [
4160 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"',
4161 ],
4162 }],
4163 ], 4158 ],
4164 }, { # toolkit_uses_gtk != 1 4159 }, { # toolkit_uses_gtk != 1
4165 'sources!': [ 4160 'sources!': [
4166 # TODO(mattm): Cert manager stuff is really !USE_NSS. 4161 # TODO(mattm): Cert manager stuff is really !USE_NSS.
4167 'browser/certificate_manager_model.cc', 4162 'browser/certificate_manager_model.cc',
4168 'browser/certificate_manager_model.h', 4163 'browser/certificate_manager_model.h',
4169 'browser/ui/webui/options/certificate_manager_handler.cc', 4164 'browser/ui/webui/options/certificate_manager_handler.cc',
4170 'browser/ui/webui/options/certificate_manager_handler.h', 4165 'browser/ui/webui/options/certificate_manager_handler.h',
4171 ], 4166 ],
4172 }], 4167 }],
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
5039 # weak imports in dependents, who still must #include 5034 # weak imports in dependents, who still must #include
5040 # closure_blocks_leopard_compat.h to get weak imports. 5035 # closure_blocks_leopard_compat.h to get weak imports.
5041 'type': 'none', 5036 'type': 'none',
5042 }], 5037 }],
5043 ], 5038 ],
5044 }, 5039 },
5045 ], 5040 ],
5046 }], 5041 }],
5047 ], 5042 ],
5048 } 5043 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698