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

Side by Side Diff: skia/skia.gyp

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 | « no previous file | skia/skia_library.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'conditions': [ 6 'conditions': [
7 # In component mode (shared_lib), we build all of skia as a single DLL. 7 # In component mode (shared_lib), we build all of skia as a single DLL.
8 # However, in the static mode, we need to build skia as multiple targets 8 # However, in the static mode, we need to build skia as multiple targets
9 # in order to support the use case where a platform (e.g. Android) may 9 # in order to support the use case where a platform (e.g. Android) may
10 # already have a copy of skia as a system library. 10 # already have a copy of skia as a system library.
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'target_name': 'skia_chrome_opts', 93 'target_name': 'skia_chrome_opts',
94 'type': 'static_library', 94 'type': 'static_library',
95 'include_dirs': [ 95 'include_dirs': [
96 '..', 96 '..',
97 'config', 97 'config',
98 '../third_party/skia/include/core', 98 '../third_party/skia/include/core',
99 ], 99 ],
100 'conditions': [ 100 'conditions': [
101 [ 'os_posix == 1 and OS != "mac" and OS != "android" and \ 101 [ 'os_posix == 1 and OS != "mac" and OS != "android" and \
102 target_arch != "arm" and target_arch != "mipsel" and \ 102 target_arch != "arm" and target_arch != "mipsel" and \
103 target_arch != "arm64"', { 103 target_arch != "arm64" and target_arch != "mips64el"', {
104 'cflags': [ 104 'cflags': [
105 '-msse2', 105 '-msse2',
106 ], 106 ],
107 }], 107 }],
108 [ 'target_arch != "arm" and target_arch != "mipsel" and \ 108 [ 'target_arch != "arm" and target_arch != "mipsel" and \
109 target_arch != "arm64"', { 109 target_arch != "arm64" and target_arch != "mips64el"', {
110 'sources': [ 110 'sources': [
111 'ext/convolver_SSE2.cc', 111 'ext/convolver_SSE2.cc',
112 ], 112 ],
113 }], 113 }],
114 [ 'target_arch == "mipsel"',{ 114 [ 'target_arch == "mipsel"',{
115 'cflags': [ 115 'cflags': [
116 '-fomit-frame-pointer', 116 '-fomit-frame-pointer',
117 ], 117 ],
118 'sources': [ 118 'sources': [
119 'ext/convolver_mips_dspr2.cc', 119 'ext/convolver_mips_dspr2.cc',
(...skipping 21 matching lines...) Expand all
141 'dependencies': [ 141 'dependencies': [
142 '../base/base.gyp:base', 142 '../base/base.gyp:base',
143 'skia.gyp:skia', 143 'skia.gyp:skia',
144 ], 144 ],
145 'sources': [ 145 'sources': [
146 'tools/filter_fuzz_stub/filter_fuzz_stub.cc', 146 'tools/filter_fuzz_stub/filter_fuzz_stub.cc',
147 ], 147 ],
148 }, 148 },
149 ], 149 ],
150 } 150 }
OLDNEW
« no previous file with comments | « no previous file | skia/skia_library.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698