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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 461633002: Refactor language detection logic to allow non-static CLD data sources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make some of the harness factory methods private Created 6 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_renderer.gypi » ('j') | 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 'conditions': [ 5 'conditions': [
6 ['OS=="mac" or OS=="win"', { 6 ['OS=="mac" or OS=="win"', {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'chrome_dll', 9 'target_name': 'chrome_dll',
10 'type': 'none', 10 'type': 'none',
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 ], 249 ],
250 }, { 250 }, {
251 'dependencies': [ 251 'dependencies': [
252 '<@(chromium_child_dependencies)', 252 '<@(chromium_child_dependencies)',
253 '../content/content.gyp:content_app_both', 253 '../content/content.gyp:content_app_both',
254 ], 254 ],
255 'dependencies!': [ 255 'dependencies!': [
256 '../content/content.gyp:content_app_browser', 256 '../content/content.gyp:content_app_browser',
257 ], 257 ],
258 }], 258 }],
259 ['cld_version==0 or cld_version==1', { 259 ['cld_version==1', {
260 'dependencies': [ 260 'dependencies': [
261 '../third_party/cld/cld.gyp:cld', 261 '<(DEPTH)/third_party/cld/cld.gyp:cld',
262 ], 262 ],
263 }], 263 }],
264 ['cld_version==0 or cld_version==2', { 264 ['cld_version==0 or cld_version==2', {
265 'dependencies': [ 265 'dependencies': [
266 '../third_party/cld_2/cld_2.gyp:cld_2', 266 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld_2',
267 ], 267 ],
268 }], 268 }],
269 ['OS=="mac" and component!="shared_library"', { 269 ['OS=="mac" and component!="shared_library"', {
270 'includes': [ 'chrome_dll_bundle.gypi' ], 270 'includes': [ 'chrome_dll_bundle.gypi' ],
271 }], 271 }],
272 ['OS=="mac" and component=="shared_library"', { 272 ['OS=="mac" and component=="shared_library"', {
273 'xcode_settings': { 'OTHER_LDFLAGS': [ '-Wl,-ObjC' ], }, 273 'xcode_settings': { 'OTHER_LDFLAGS': [ '-Wl,-ObjC' ], },
274 }], 274 }],
275 ['OS=="mac"', { 275 ['OS=="mac"', {
276 'xcode_settings': { 276 'xcode_settings': {
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 }, 371 },
372 }], 372 }],
373 ] 373 ]
374 }], 374 }],
375 ], 375 ],
376 }, # target chrome_child_dll 376 }, # target chrome_child_dll
377 ], 377 ],
378 }], 378 }],
379 ], 379 ],
380 } 380 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698