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

Side by Side Diff: build/standalone.gypi

Issue 1094713002: Supress the two noisiest warnings on linux standalone builds. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Better comment. Created 5 years, 8 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 'msvs_configuration_platform': 'x64', 137 'msvs_configuration_platform': 'x64',
138 }, 138 },
139 'Release_x64': { 139 'Release_x64': {
140 'inherit_from': ['Release'], 140 'inherit_from': ['Release'],
141 'msvs_configuration_platform': 'x64', 141 'msvs_configuration_platform': 'x64',
142 }, 142 },
143 }, 143 },
144 'cflags': [ 144 'cflags': [
145 '-Wall', 145 '-Wall',
146 '-W', 146 '-W',
147 '-Wno-missing-field-initializers',
148 # Code might someday be made clean for -Wsign-compare, but for now
149 # this produces too much noise to be useful.
150 '-Wno-sign-compare',
147 '-Wno-unused-parameter', 151 '-Wno-unused-parameter',
148 '-pthread', 152 '-pthread',
149 '-fno-exceptions', 153 '-fno-exceptions',
150 '-fvisibility=hidden', 154 '-fvisibility=hidden',
151 ], 155 ],
152 'cflags_cc': [ 156 'cflags_cc': [
153 '-std=gnu++0x', 157 '-std=gnu++0x',
154 '-Wnon-virtual-dtor', 158 '-Wnon-virtual-dtor',
155 '-fno-rtti', 159 '-fno-rtti',
156 ], 160 ],
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 'V8_USE_EXTERNAL_STARTUP_DATA', 277 'V8_USE_EXTERNAL_STARTUP_DATA',
274 ], 278 ],
275 }, 279 },
276 }], # v8_use_external_startup_data==1 280 }], # v8_use_external_startup_data==1
277 ], 281 ],
278 'xcode_settings': { 282 'xcode_settings': {
279 # See comment in Chromium's common.gypi for why this is needed. 283 # See comment in Chromium's common.gypi for why this is needed.
280 'SYMROOT': '<(DEPTH)/xcodebuild', 284 'SYMROOT': '<(DEPTH)/xcodebuild',
281 } 285 }
282 } 286 }
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