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

Side by Side Diff: third_party/re2/re2.gyp

Issue 11819038: re2 building on x64 windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: just a couple minor non-sign-changing fixes, and disable c4267 Created 7 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
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 'variables': { 6 'variables': {
7 'use_system_re2%': 0, 7 'use_system_re2%': 0,
8 }, 8 },
9 'conditions': [ 9 'conditions': [
10 ['use_system_re2==0', { 10 ['use_system_re2==0', {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'util/util.h', 74 'util/util.h',
75 ], 75 ],
76 'conditions': [ 76 'conditions': [
77 ['OS=="win"', { 77 ['OS=="win"', {
78 'sources': [ 78 'sources': [
79 'mswin/stdint.h' 79 'mswin/stdint.h'
80 ], 80 ],
81 'include_dirs': [ 81 'include_dirs': [
82 'mswin' 82 'mswin'
83 ], 83 ],
84 'msvs_disabled_warnings': [ 4018, 4722 ], 84 'msvs_disabled_warnings': [ 4018, 4722, 4267 ],
85 }] 85 }]
86 ] 86 ]
87 }, 87 },
88 ], 88 ],
89 }, { # use_system_re2==1 89 }, { # use_system_re2==1
90 'targets': [ 90 'targets': [
91 { 91 {
92 'target_name': 're2', 92 'target_name': 're2',
93 'type': 'none', 93 'type': 'none',
94 'variables': { 94 'variables': {
(...skipping 12 matching lines...) Expand all
107 'link_settings': { 107 'link_settings': {
108 'libraries': [ 108 'libraries': [
109 '-lre2', 109 '-lre2',
110 ], 110 ],
111 }, 111 },
112 } 112 }
113 ], 113 ],
114 }], 114 }],
115 ], 115 ],
116 } 116 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698