Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: common.gypi

Issue 10234088: Use GYP to generate MSVS project files (Closed)
Patch Set: Created April 23, 2013, 4:24 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'visibility%': 'hidden', 3 'visibility%': 'hidden',
4 'library%': 'static_library', 4 'library%': 'static_library',
5 'component%': '', 5 'component%': '',
6 'want_separate_host_toolset': 0, 6 'want_separate_host_toolset': 0,
7 }, 7 },
8 8
9 'conditions': [ 9 'conditions': [
10 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ 10 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \
11 or OS=="netbsd"', { 11 or OS=="netbsd"', {
12 'target_defaults': { 12 'target_defaults': {
13 'cflags': [ '-Wall', '-W', '-Wno-unused-parameter', 13 'cflags': [ '-Wall', '-W', '-Wno-unused-parameter',
14 '-Wnon-virtual-dtor', '-pthread', '-fno-rtti', 14 '-Wnon-virtual-dtor', '-pthread', '-fno-rtti',
15 '-pedantic', 15 '-pedantic',
16 # Ignore some warnings for googletest 16 # Ignore some warnings for googletest
17 '-Wno-error=long-long', '-Wno-error=variadic-macros', 17 '-Wno-error=long-long', '-Wno-error=variadic-macros',
18 '-Wno-error=missing-field-initializers' ], 18 '-Wno-error=missing-field-initializers' ],
19 'ldflags': [ '-pthread', ], 19 'ldflags': [ '-pthread', ],
20 }, 20 },
21 }], 21 }],
22 ] 22 ],
23
24 'target_defaults': {
25 'msvs_cygwin_shell': 0,
26 'conditions': [[
27 'target_arch=="x64"', {
Eric 2013/04/23 17:12:17 See http://code.google.com/p/mozc/source/browse/tr
Wladimir Palant 2013/04/24 06:01:34 I was merely making sure that this matches what V8
28 'msvs_configuration_platform': 'x64',
29 }
30 ]],
31 }
23 } 32 }
OLDNEW
« no previous file with comments | « buildmsvs_release.bat ('k') | createsolution.bat » ('j') | createsolution.bat » ('J')

Powered by Google App Engine
This is Rietveld