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

Side by Side Diff: skia/skia_library.gypi

Issue 440043002: [MIPS64] Add build support in Skia for MIPS64 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 | « skia/skia.gyp ('k') | skia/skia_library_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 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 # This gypi file contains the Skia library. 6 # This gypi file contains the Skia library.
7 # In component mode (shared_lib) it is folded into a single shared library with 7 # In component mode (shared_lib) it is folded into a single shared library with
8 # the Chrome-specific enhancements but in all other cases it is a separate lib. 8 # the Chrome-specific enhancements but in all other cases it is a separate lib.
9 9
10 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 10 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 }], 226 }],
227 [ 'OS == "android" and target_arch == "arm"', { 227 [ 'OS == "android" and target_arch == "arm"', {
228 'sources': [ 228 'sources': [
229 '../third_party/skia/src/core/SkUtilsArm.cpp', 229 '../third_party/skia/src/core/SkUtilsArm.cpp',
230 ], 230 ],
231 'includes': [ 231 'includes': [
232 '../build/android/cpufeatures.gypi', 232 '../build/android/cpufeatures.gypi',
233 ], 233 ],
234 }], 234 }],
235 [ 'target_arch == "arm" or target_arch == "arm64" or \ 235 [ 'target_arch == "arm" or target_arch == "arm64" or \
236 target_arch == "mipsel"', { 236 target_arch == "mipsel" or target_arch == "mips64el"', {
237 'sources!': [ 237 'sources!': [
238 '../third_party/skia/src/opts/opts_check_x86.cpp' 238 '../third_party/skia/src/opts/opts_check_x86.cpp'
239 ], 239 ],
240 }], 240 }],
241 [ 'desktop_linux == 1 or chromeos == 1', { 241 [ 'desktop_linux == 1 or chromeos == 1', {
242 'dependencies': [ 242 'dependencies': [
243 '../build/linux/system.gyp:fontconfig', 243 '../build/linux/system.gyp:fontconfig',
244 '../build/linux/system.gyp:freetype2', 244 '../build/linux/system.gyp:freetype2',
245 '../third_party/icu/icu.gyp:icuuc', 245 '../third_party/icu/icu.gyp:icuuc',
246 ], 246 ],
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 '../third_party/skia/include/pdf', 393 '../third_party/skia/include/pdf',
394 '../third_party/skia/include/gpu', 394 '../third_party/skia/include/gpu',
395 '../third_party/skia/include/lazy', 395 '../third_party/skia/include/lazy',
396 '../third_party/skia/include/pathops', 396 '../third_party/skia/include/pathops',
397 '../third_party/skia/include/pipe', 397 '../third_party/skia/include/pipe',
398 '../third_party/skia/include/ports', 398 '../third_party/skia/include/ports',
399 '../third_party/skia/include/utils', 399 '../third_party/skia/include/utils',
400 ], 400 ],
401 }, 401 },
402 } 402 }
OLDNEW
« no previous file with comments | « skia/skia.gyp ('k') | skia/skia_library_opts.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698