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

Side by Side Diff: gyp/common_conditions.gypi

Issue 13468010: Revert Skia to use -02. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: reapply Created 7 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 | Annotate | Revision Log
« 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 # conditions used in both common.gypi and skia.gyp in chromium 1 # conditions used in both common.gypi and skia.gyp in chromium
2 # 2 #
3 { 3 {
4 'defines': [ 4 'defines': [
5 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', 5 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)',
6 # 'SK_SUPPORT_HINTING_SCALE_FACTOR', 6 # 'SK_SUPPORT_HINTING_SCALE_FACTOR',
7 ], 7 ],
8 'conditions' : [ 8 'conditions' : [
9 [ 'skia_gpu == 1', 9 [ 'skia_gpu == 1',
10 { 10 {
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 [ 'skia_os == "android"', 292 [ 'skia_os == "android"',
293 { 293 {
294 'defines': [ 294 'defines': [
295 'SK_BUILD_FOR_ANDROID', 295 'SK_BUILD_FOR_ANDROID',
296 ], 296 ],
297 'configurations': { 297 'configurations': {
298 'Debug': { 298 'Debug': {
299 'cflags': ['-g'] 299 'cflags': ['-g']
300 }, 300 },
301 'Release': { 301 'Release': {
302 'cflags': ['-O3'], 302 'cflags': ['-O2'],
303 'defines': [ 'NDEBUG' ], 303 'defines': [ 'NDEBUG' ],
304 }, 304 },
305 }, 305 },
306 'libraries': [ 306 'libraries': [
307 '-lstdc++', 307 '-lstdc++',
308 '-lm', 308 '-lm',
309 '-llog', 309 '-llog',
310 ], 310 ],
311 'cflags': [ 311 'cflags': [
312 '-Wall', 312 '-Wall',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 'xcode_settings': { 376 'xcode_settings': {
377 'SYMROOT': '<(DEPTH)/xcodebuild', 377 'SYMROOT': '<(DEPTH)/xcodebuild',
378 }, 378 },
379 } 379 }
380 380
381 # Local Variables: 381 # Local Variables:
382 # tab-width:2 382 # tab-width:2
383 # indent-tabs-mode:nil 383 # indent-tabs-mode:nil
384 # End: 384 # End:
385 # vim: set expandtab tabstop=2 shiftwidth=2: 385 # vim: set expandtab tabstop=2 shiftwidth=2:
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