| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 'OTHER_CPLUSPLUSFLAGS': '-fvisibility=hidden -fvisibility-inlines-hidd
en', | 293 'OTHER_CPLUSPLUSFLAGS': '-fvisibility=hidden -fvisibility-inlines-hidd
en', |
| 294 'GCC_THUMB_SUPPORT': 'NO', | 294 'GCC_THUMB_SUPPORT': 'NO', |
| 295 }, | 295 }, |
| 296 }, | 296 }, |
| 297 ], | 297 ], |
| 298 | 298 |
| 299 ['skia_os == "android"', | 299 ['skia_os == "android"', |
| 300 { | 300 { |
| 301 'defines': [ | 301 'defines': [ |
| 302 'SK_BUILD_FOR_ANDROID', | 302 'SK_BUILD_FOR_ANDROID', |
| 303 'SK_BUILD_FOR_ANDROID_NDK', | |
| 304 ], | 303 ], |
| 305 'configurations': { | 304 'configurations': { |
| 306 'Debug': { | 305 'Debug': { |
| 307 'cflags': ['-g'] | 306 'cflags': ['-g'] |
| 308 }, | 307 }, |
| 309 'Release': { | 308 'Release': { |
| 310 'cflags': ['-O2'], | 309 'cflags': ['-O2'], |
| 311 'defines': [ 'NDEBUG' ], | 310 'defines': [ 'NDEBUG' ], |
| 312 }, | 311 }, |
| 313 }, | 312 }, |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 'xcode_settings': { | 383 'xcode_settings': { |
| 385 'SYMROOT': '<(DEPTH)/xcodebuild', | 384 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 386 }, | 385 }, |
| 387 } | 386 } |
| 388 | 387 |
| 389 # Local Variables: | 388 # Local Variables: |
| 390 # tab-width:2 | 389 # tab-width:2 |
| 391 # indent-tabs-mode:nil | 390 # indent-tabs-mode:nil |
| 392 # End: | 391 # End: |
| 393 # vim: set expandtab tabstop=2 shiftwidth=2: | 392 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |