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

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: Rename the stack_walker unittest and fix the x86-64 implementation of stack_walker 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'files/pcrecpp_internal.h', 88 'files/pcrecpp_internal.h',
89 'files/pcreposix.c', 89 'files/pcreposix.c',
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_disabled_warnings': [
99 'VCCLCompilerTool': { 99 '4267',
100 'AdditionalOptions': ['/wd4130', '/wd4018', '/wd4189', '/wd4996'], 100 '4130',
101 }, 101 '4018',
102 }, 102 '4189',
103 '4996',
104 ],
103 'all_dependent_settings': { 105 'all_dependent_settings': {
104 'defines': [ 106 'defines': [
105 'LINK_SIZE=2', 107 'LINK_SIZE=2',
106 'PCRE_STATIC', 108 'PCRE_STATIC',
107 ], 109 ],
108 'include_dirs': [ 110 'include_dirs': [
109 'files', 111 'files',
110 ], 112 ],
111 }, 113 },
112 }, 114 },
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 'pcre_lib', 182 'pcre_lib',
181 ], 183 ],
182 'msvs_settings': { 184 'msvs_settings': {
183 'VCCLCompilerTool': { 185 'VCCLCompilerTool': {
184 'AdditionalOptions': ['/wd4018', '/wd4996'], 186 'AdditionalOptions': ['/wd4018', '/wd4996'],
185 }, 187 },
186 }, 188 },
187 }, 189 },
188 ] 190 ]
189 } 191 }
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