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

Side by Side Diff: gyp/common_conditions.gypi

Issue 12784006: Update Android Release build to use -O3. (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 | 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ], 303 ],
304 'configurations': { 304 'configurations': {
305 'Debug': { 305 'Debug': {
306 'cflags': ['-g'] 306 'cflags': ['-g']
307 }, 307 },
308 'Release': { 308 'Release': {
309 'cflags': ['-O2'], 309 'cflags': ['-O3'],
310 'defines': [ 'NDEBUG' ], 310 'defines': [ 'NDEBUG' ],
311 }, 311 },
312 }, 312 },
313 'libraries': [ 313 'libraries': [
314 '-lstdc++', 314 '-lstdc++',
315 '-lm', 315 '-lm',
316 '-llog', 316 '-llog',
317 ], 317 ],
318 'cflags': [ 318 'cflags': [
319 '-Wall', 319 '-Wall',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 'xcode_settings': { 383 'xcode_settings': {
384 'SYMROOT': '<(DEPTH)/xcodebuild', 384 'SYMROOT': '<(DEPTH)/xcodebuild',
385 }, 385 },
386 } 386 }
387 387
388 # Local Variables: 388 # Local Variables:
389 # tab-width:2 389 # tab-width:2
390 # indent-tabs-mode:nil 390 # indent-tabs-mode:nil
391 # End: 391 # End:
392 # vim: set expandtab tabstop=2 shiftwidth=2: 392 # 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