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

Side by Side Diff: build/standalone.gypi

Issue 360273002: Fix building pdfium for x64 with ninja under windows. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 6 years, 5 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 | « no previous file | 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 2014 PDFium Authors. All rights reserved. 1 # Copyright 2014 PDFium 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 # Definitions to be used when building stand-alone PDFium binaries. 5 # Definitions to be used when building stand-alone PDFium binaries.
6 6
7 { 7 {
8 'variables': { 8 'variables': {
9 'component%': 'static_library', 9 'component%': 'static_library',
10 'clang%': 0, 10 'clang%': 0,
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 '-Os', 124 '-Os',
125 ], 125 ],
126 'cflags': [ 126 'cflags': [
127 '-fdata-sections', 127 '-fdata-sections',
128 '-ffunction-sections', 128 '-ffunction-sections',
129 '-O2', 129 '-O2',
130 ], 130 ],
131 }], 131 }],
132 ], # conditions 132 ], # conditions
133 }, 133 },
134 'Debug_x64': {
135 'inherit_from': ['Debug'],
136 'msvs_configuration_platform': 'x64',
137 },
138 'Release_x64': {
139 'inherit_from': ['Release'],
140 'msvs_configuration_platform': 'x64',
141 },
134 }, 142 },
135 'defines!': [ 143 'defines!': [
136 'DEBUG', 144 'DEBUG',
137 ], 145 ],
138 'cflags': [ 146 'cflags': [
139 '-Wall', 147 '-Wall',
140 '-W', 148 '-W',
141 '-Wno-unused-parameter', 149 '-Wno-unused-parameter',
142 '-pthread', '-fno-exceptions', 150 '-pthread', '-fno-exceptions',
143 '-fvisibility=hidden', 151 '-fvisibility=hidden',
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 }], 253 }],
246 ], # target_conditions 254 ], # target_conditions
247 }, # target_defaults 255 }, # target_defaults
248 }], # OS=="mac" 256 }], # OS=="mac"
249 ], 257 ],
250 'xcode_settings': { 258 'xcode_settings': {
251 # See comment in Chromium's common.gypi for why this is needed. 259 # See comment in Chromium's common.gypi for why this is needed.
252 'SYMROOT': '<(DEPTH)/xcodebuild', 260 'SYMROOT': '<(DEPTH)/xcodebuild',
253 } 261 }
254 } 262 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698