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