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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 11361051: Remove dependency on language detection library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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) 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 '../third_party/mach_override/mach_override.gyp:mach_override', 303 '../third_party/mach_override/mach_override.gyp:mach_override',
304 ], 304 ],
305 }], 305 }],
306 ['toolkit_uses_gtk == 1', { 306 ['toolkit_uses_gtk == 1', {
307 'dependencies': [ 307 'dependencies': [
308 '../build/linux/system.gyp:gtk', 308 '../build/linux/system.gyp:gtk',
309 '../sandbox/sandbox.gyp:sandbox', 309 '../sandbox/sandbox.gyp:sandbox',
310 ], 310 ],
311 }], 311 }],
312 ['OS=="android"', { 312 ['OS=="android"', {
313 'dependencies!': [
314 '../third_party/cld/cld.gyp:cld',
315 ],
313 'defines': [ 316 'defines': [
314 'ENABLE_MOBILE_YOUTUBE_PLUGIN', 317 'ENABLE_MOBILE_YOUTUBE_PLUGIN',
315 ], 318 ],
316 }], 319 }],
317 ['OS=="win"', { 320 ['OS=="win"', {
318 'include_dirs': [ 321 'include_dirs': [
319 '<(DEPTH)/third_party/wtl/include', 322 '<(DEPTH)/third_party/wtl/include',
320 ], 323 ],
321 'conditions': [ 324 'conditions': [
322 ['win_use_allocator_shim==1', { 325 ['win_use_allocator_shim==1', {
323 'dependencies': [ 326 'dependencies': [
324 '<(allocator_target)', 327 '<(allocator_target)',
325 ], 328 ],
326 'export_dependent_settings': [ 329 'export_dependent_settings': [
327 '<(allocator_target)', 330 '<(allocator_target)',
328 ], 331 ],
329 }], 332 }],
330 ], 333 ],
331 }], 334 }],
332 ], 335 ],
333 }, 336 },
334 ], 337 ],
335 } 338 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698