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

Side by Side Diff: webkit/glue/webkit_glue.gypi

Issue 1560027: Refactor FileVersionInfo into an interface with platform implementations. (Closed)
Patch Set: comments Created 10 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
« no previous file with comments | « webkit/glue/webkit_glue.cc ('k') | webkit/tools/test_shell/test_shell.cc » ('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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../..', 9 'webkit_src_dir': '../../../..',
10 },{ 10 },{
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 294
295 ], 295 ],
296 # When glue is a dependency, it needs to be a hard dependency. 296 # When glue is a dependency, it needs to be a hard dependency.
297 # Dependents may rely on files generated by this target or one of its 297 # Dependents may rely on files generated by this target or one of its
298 # own hard dependencies. 298 # own hard dependencies.
299 'hard_dependency': 1, 299 'hard_dependency': 1,
300 'conditions': [ 300 'conditions': [
301 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { 301 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
302 'dependencies': [ 302 'dependencies': [
303 '<(DEPTH)/build/linux/system.gyp:gtk', 303 '<(DEPTH)/build/linux/system.gyp:gtk',
304 '<(DEPTH)/base/base.gyp:linux_versioninfo',
305 ], 304 ],
306 'sources!': [ 305 'sources!': [
307 'plugins/plugin_stubs.cc', 306 'plugins/plugin_stubs.cc',
308 ], 307 ],
309 }, { # else: OS!="linux" and OS!="freebsd" and OS!="openbsd" \ 308 }, { # else: OS!="linux" and OS!="freebsd" and OS!="openbsd" \
310 # and OS!="solaris"' 309 # and OS!="solaris"'
311 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], 310 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'],
312 ['exclude', r'/gtk_']], 311 ['exclude', r'/gtk_']],
313 }], 312 }],
314 ['OS!="mac"', { 313 ['OS!="mac"', {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 }], 349 }],
351 ['inside_chromium_build==0', { 350 ['inside_chromium_build==0', {
352 'dependencies': [ 351 'dependencies': [
353 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 352 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
354 ], 353 ],
355 }], 354 }],
356 ], 355 ],
357 }, 356 },
358 ], 357 ],
359 } 358 }
OLDNEW
« no previous file with comments | « webkit/glue/webkit_glue.cc ('k') | webkit/tools/test_shell/test_shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698