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

Side by Side Diff: gyp/common_conditions.gypi

Issue 326913004: MIPS: added optimization for functions from SkBlitRow. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | gyp/opts.gyp » ('j') | 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_GPU=<(skia_gpu)', 6 'SK_SUPPORT_GPU=<(skia_gpu)',
7 'SK_SUPPORT_OPENCL=<(skia_opencl)', 7 'SK_SUPPORT_OPENCL=<(skia_opencl)',
8 'SK_FORCE_DISTANCEFIELD_FONTS=<(skia_force_distancefield_fonts)', 8 'SK_FORCE_DISTANCEFIELD_FONTS=<(skia_force_distancefield_fonts)',
9 ], 9 ],
10 'conditions' : [ 10 'conditions' : [
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 'conditions': [ 256 'conditions': [
257 [ 'mips_dsp == 1', { 257 [ 'mips_dsp == 1', {
258 'cflags': [ 258 'cflags': [
259 '-mdsp', 259 '-mdsp',
260 ], 260 ],
261 }], 261 }],
262 [ 'mips_dsp == 2', { 262 [ 'mips_dsp == 2', {
263 'cflags': [ 263 'cflags': [
264 '-mdspr2', 264 '-mdspr2',
265 ], 265 ],
266 'defines': [
267 '__MIPS_HAVE_DSPR2',
268 ],
266 }], 269 }],
267 ], 270 ],
268 }], 271 }],
269 ], 272 ],
270 }], 273 }],
271 ], 274 ],
272 }, 275 },
273 ], 276 ],
274 277
275 ['skia_android_framework', { 278 ['skia_android_framework', {
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 'SK_BUILD_JSON_WRITER', 685 'SK_BUILD_JSON_WRITER',
683 ] 686 ]
684 }], 687 }],
685 688
686 ], # end 'conditions' 689 ], # end 'conditions'
687 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details 690 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for more details
688 'xcode_settings': { 691 'xcode_settings': {
689 'SYMROOT': '<(DEPTH)/xcodebuild', 692 'SYMROOT': '<(DEPTH)/xcodebuild',
690 }, 693 },
691 } 694 }
OLDNEW
« no previous file with comments | « no previous file | gyp/opts.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698