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

Side by Side Diff: third_party/WebKit/Source/platform/blink_platform.gyp

Issue 2289693002: Add MIPS SIMD Arch (MSA) optimized WebGL image conversion function (Closed)
Patch Set: Fixed merge conflicts Created 4 years, 3 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
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 # Disable c4267 warnings until we fix size_t to int truncations. 233 # Disable c4267 warnings until we fix size_t to int truncations.
234 # Disable c4724 warnings which is generated in VS2012 due to improper 234 # Disable c4724 warnings which is generated in VS2012 due to improper
235 # compiler optimizations, see crbug.com/237063 235 # compiler optimizations, see crbug.com/237063
236 'msvs_disabled_warnings': [ 4267, 4334, 4724 ], 236 'msvs_disabled_warnings': [ 4267, 4334, 4724 ],
237 'conditions': [ 237 'conditions': [
238 ['target_arch == "ia32" or target_arch == "x64"', { 238 ['target_arch == "ia32" or target_arch == "x64"', {
239 'sources/': [ 239 'sources/': [
240 ['include', 'graphics/cpu/x86/WebGLImageConversionSSE\\.h$'], 240 ['include', 'graphics/cpu/x86/WebGLImageConversionSSE\\.h$'],
241 ], 241 ],
242 }], 242 }],
243 ['target_arch == "mipsel" or target_arch == "mips64el"', {
244 'sources/': [
245 ['include', 'graphics/cpu/mips/WebGLImageConversionMSA\\.h$'],
246 ],
247 }],
243 ['OS=="linux" or OS=="android"', { 248 ['OS=="linux" or OS=="android"', {
244 'sources/': [ 249 'sources/': [
245 ['include', 'fonts/linux/FontPlatformDataLinux\\.cpp$'], 250 ['include', 'fonts/linux/FontPlatformDataLinux\\.cpp$'],
246 ] 251 ]
247 }, { # OS!="linux" and OS!="android" 252 }, { # OS!="linux" and OS!="android"
248 'sources/': [ 253 'sources/': [
249 ['exclude', 'fonts/linux/FontPlatformDataLinux\\.cpp$'], 254 ['exclude', 'fonts/linux/FontPlatformDataLinux\\.cpp$'],
250 ] 255 ]
251 }], 256 }],
252 ['OS=="mac"', { 257 ['OS=="mac"', {
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 ['OS=="android"', { 428 ['OS=="android"', {
424 'cflags!': ['-mthumb'], 429 'cflags!': ['-mthumb'],
425 }], 430 }],
426 ], 431 ],
427 },{ # target_arch!="arm" 432 },{ # target_arch!="arm"
428 'type': 'none', 433 'type': 'none',
429 }], 434 }],
430 ], 435 ],
431 }], 436 }],
432 } 437 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/BUILD.gn ('k') | third_party/WebKit/Source/platform/cpu/mips/CommonMacrosMSA.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698