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

Side by Side Diff: gyp/common_conditions.gypi

Issue 12739007: refactor android defines to implicitly assume NDK compliance unless it is explicitly marked as bein… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 9 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 | include/core/SkPreConfig.h » ('j') | include/core/SkPreConfig.h » ('J')
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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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:
OLDNEW
« no previous file with comments | « no previous file | include/core/SkPreConfig.h » ('j') | include/core/SkPreConfig.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698