| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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: |
| OLD | NEW |