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

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

Issue 2194383007: Port some more code to x64 (Closed) Base URL: git@github.com:google/syzygy.git@master
Patch Set: Fix type mismatch Created 4 years, 4 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 | « syzygy/syzygy.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 Google Inc. All Rights Reserved. 1 # Copyright 2011 Google Inc. All Rights Reserved.
2 # Author: siggi@google.com (Sigurdur Asgeirsson) 2 # Author: siggi@google.com (Sigurdur Asgeirsson)
3 3
4 { 4 {
5 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'includes': [ 8 'includes': [
9 '../../build/common.gypi', 9 '../../build/common.gypi',
10 ], 10 ],
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'files/pcreposix.h', 90 'files/pcreposix.h',
91 'files/ucp.h', 91 'files/ucp.h',
92 '<(SHARED_INTERMEDIATE_DIR)/pcre_chartables.c', 92 '<(SHARED_INTERMEDIATE_DIR)/pcre_chartables.c',
93 # C plusplus sourcews 93 # C plusplus sourcews
94 'files/pcrecpp.cc', 94 'files/pcrecpp.cc',
95 'files/pcre_scanner.cc', 95 'files/pcre_scanner.cc',
96 'files/pcre_stringpiece.cc', 96 'files/pcre_stringpiece.cc',
97 ], 97 ],
98 'msvs_settings': { 98 'msvs_settings': {
99 'VCCLCompilerTool': { 99 'VCCLCompilerTool': {
100 'AdditionalOptions': ['/wd4130', '/wd4018', '/wd4189', '/wd4996'], 100 'AdditionalOptions': ['/wd4267', '/wd4130', '/wd4018', '/wd4189', '/wd 4996'],
Sébastien Marchand 2016/08/04 18:26:32 Can you split this on multiple lines (to avoid exc
101 }, 101 },
102 }, 102 },
103 'all_dependent_settings': { 103 'all_dependent_settings': {
104 'defines': [ 104 'defines': [
105 'LINK_SIZE=2', 105 'LINK_SIZE=2',
106 'PCRE_STATIC', 106 'PCRE_STATIC',
107 ], 107 ],
108 'include_dirs': [ 108 'include_dirs': [
109 'files', 109 'files',
110 ], 110 ],
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 'pcre_lib', 180 'pcre_lib',
181 ], 181 ],
182 'msvs_settings': { 182 'msvs_settings': {
183 'VCCLCompilerTool': { 183 'VCCLCompilerTool': {
184 'AdditionalOptions': ['/wd4018', '/wd4996'], 184 'AdditionalOptions': ['/wd4018', '/wd4996'],
185 }, 185 },
186 }, 186 },
187 }, 187 },
188 ] 188 ]
189 } 189 }
OLDNEW
« no previous file with comments | « syzygy/syzygy.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698