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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 9211007: Add -DENABLE_PLUGIN_INSTALLATION in chrome/renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'renderer', 8 'target_name': 'renderer',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 }, { # safe_browsing==0 238 }, { # safe_browsing==0
239 'sources/': [ 239 'sources/': [
240 ['exclude', '^renderer/safe_browsing/'], 240 ['exclude', '^renderer/safe_browsing/'],
241 ], 241 ],
242 }], 242 }],
243 ['OS=="mac"', { 243 ['OS=="mac"', {
244 'dependencies': [ 244 'dependencies': [
245 '../third_party/mach_override/mach_override.gyp:mach_override', 245 '../third_party/mach_override/mach_override.gyp:mach_override',
246 ], 246 ],
247 }], 247 }],
248 ['enable_plugin_installation', {
249 'defines': [
250 'ENABLE_PLUGIN_INSTALLATION',
jochen (gone - plz use gerrit) 2012/01/16 11:02:14 usually that would go into build/common.gypi
251 ],
252 }],
248 ['toolkit_uses_gtk == 1', { 253 ['toolkit_uses_gtk == 1', {
249 'conditions': [ 254 'conditions': [
250 [ 'linux_use_tcmalloc==1', { 255 [ 'linux_use_tcmalloc==1', {
251 'dependencies': [ 256 'dependencies': [
252 '../base/allocator/allocator.gyp:allocator', 257 '../base/allocator/allocator.gyp:allocator',
253 ], 258 ],
254 }, 259 },
255 ], 260 ],
256 ], 261 ],
257 'dependencies': [ 262 'dependencies': [
(...skipping 13 matching lines...) Expand all
271 'export_dependent_settings': [ 276 'export_dependent_settings': [
272 '<(allocator_target)', 277 '<(allocator_target)',
273 ], 278 ],
274 }], 279 }],
275 ], 280 ],
276 }], 281 }],
277 ], 282 ],
278 }, 283 },
279 ], 284 ],
280 } 285 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698