OLD | NEW |
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 '../third_party/skia/src/utils/SkMD5.h', | 125 '../third_party/skia/src/utils/SkMD5.h', |
126 '../third_party/skia/src/utils/SkMeshUtils.cpp', | 126 '../third_party/skia/src/utils/SkMeshUtils.cpp', |
127 '../third_party/skia/src/utils/SkNinePatch.cpp', | 127 '../third_party/skia/src/utils/SkNinePatch.cpp', |
128 '../third_party/skia/src/utils/SkOSFile.cpp', | 128 '../third_party/skia/src/utils/SkOSFile.cpp', |
129 '../third_party/skia/src/utils/SkParse.cpp', | 129 '../third_party/skia/src/utils/SkParse.cpp', |
130 '../third_party/skia/src/utils/SkParseColor.cpp', | 130 '../third_party/skia/src/utils/SkParseColor.cpp', |
131 '../third_party/skia/src/utils/SkParsePath.cpp', | 131 '../third_party/skia/src/utils/SkParsePath.cpp', |
132 '../third_party/skia/src/utils/SkPathUtils.cpp', | 132 '../third_party/skia/src/utils/SkPathUtils.cpp', |
133 '../third_party/skia/src/utils/SkSHA1.cpp', | 133 '../third_party/skia/src/utils/SkSHA1.cpp', |
134 '../third_party/skia/src/utils/SkSHA1.h', | 134 '../third_party/skia/src/utils/SkSHA1.h', |
135 '../third_party/skia/src/utils/SkThreadUtils.h', | |
136 '../third_party/skia/src/utils/SkThreadUtils_pthread.cpp', | |
137 '../third_party/skia/src/utils/SkThreadUtils_pthread.h', | |
138 '../third_party/skia/src/utils/SkThreadUtils_pthread_linux.cpp', | |
139 '../third_party/skia/src/utils/SkThreadUtils_pthread_mach.cpp', | |
140 '../third_party/skia/src/utils/SkThreadUtils_pthread_other.cpp', | |
141 '../third_party/skia/src/utils/SkThreadUtils_win.cpp', | |
142 '../third_party/skia/src/utils/SkThreadUtils_win.h', | |
143 '../third_party/skia/src/utils/SkTFitsIn.h', | 135 '../third_party/skia/src/utils/SkTFitsIn.h', |
144 '../third_party/skia/src/utils/SkTLogic.h', | 136 '../third_party/skia/src/utils/SkTLogic.h', |
145 | 137 |
| 138 # We don't currently need to change thread affinity, so leave out this complex
ity for now. |
| 139 "../third_party/skia/src/utils/SkThreadUtils_pthread_mach.cpp", |
| 140 "../third_party/skia/src/utils/SkThreadUtils_pthread_linux.cpp", |
| 141 |
146 #windows | 142 #windows |
147 '../third_party/skia/include/utils/win/SkAutoCoInitialize.h', | 143 '../third_party/skia/include/utils/win/SkAutoCoInitialize.h', |
148 '../third_party/skia/include/utils/win/SkHRESULT.h', | 144 '../third_party/skia/include/utils/win/SkHRESULT.h', |
149 '../third_party/skia/include/utils/win/SkIStream.h', | 145 '../third_party/skia/include/utils/win/SkIStream.h', |
150 '../third_party/skia/include/utils/win/SkTScopedComPtr.h', | 146 '../third_party/skia/include/utils/win/SkTScopedComPtr.h', |
151 '../third_party/skia/src/utils/win/SkAutoCoInitialize.cpp', | 147 '../third_party/skia/src/utils/win/SkAutoCoInitialize.cpp', |
152 '../third_party/skia/src/utils/win/SkIStream.cpp', | 148 '../third_party/skia/src/utils/win/SkIStream.cpp', |
153 '../third_party/skia/src/utils/win/SkWGL_win.cpp', | 149 '../third_party/skia/src/utils/win/SkWGL_win.cpp', |
154 | 150 |
155 #testing | 151 #testing |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 'sources/': [ | 191 'sources/': [ |
196 ['exclude', '../third_party/skia/src/pdf/'] | 192 ['exclude', '../third_party/skia/src/pdf/'] |
197 ], | 193 ], |
198 }], | 194 }], |
199 ['skia_support_pdf == 1', { | 195 ['skia_support_pdf == 1', { |
200 'dependencies': [ | 196 'dependencies': [ |
201 '../third_party/sfntly/sfntly.gyp:sfntly', | 197 '../third_party/sfntly/sfntly.gyp:sfntly', |
202 ], | 198 ], |
203 }], | 199 }], |
204 | 200 |
| 201 [ 'OS == "win"', { |
| 202 'sources!': [ |
| 203 # Keeping _win.cpp |
| 204 "../third_party/skia/src/utils/SkThreadUtils_pthread.cpp", |
| 205 "../third_party/skia/src/utils/SkThreadUtils_pthread_other.cpp", |
| 206 ], |
| 207 },{ |
| 208 'sources!': [ |
| 209 # Keeping _pthread.cpp and _pthread_other.cpp |
| 210 "../third_party/skia/src/utils/SkThreadUtils_win.cpp", |
| 211 ], |
| 212 }], |
| 213 |
205 [ 'OS != "mac"', { | 214 [ 'OS != "mac"', { |
206 'sources/': [ | 215 'sources/': [ |
207 ['exclude', '/mac/'] | 216 ['exclude', '/mac/'] |
208 ], | 217 ], |
209 }], | 218 }], |
210 [ 'OS == "android" and target_arch == "arm"', { | 219 [ 'OS == "android" and target_arch == "arm"', { |
211 'sources': [ | 220 'sources': [ |
212 '../third_party/skia/src/core/SkUtilsArm.cpp', | 221 '../third_party/skia/src/core/SkUtilsArm.cpp', |
213 ], | 222 ], |
214 'includes': [ | 223 'includes': [ |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 '../third_party/skia/include/pdf', | 373 '../third_party/skia/include/pdf', |
365 '../third_party/skia/include/gpu', | 374 '../third_party/skia/include/gpu', |
366 '../third_party/skia/include/lazy', | 375 '../third_party/skia/include/lazy', |
367 '../third_party/skia/include/pathops', | 376 '../third_party/skia/include/pathops', |
368 '../third_party/skia/include/pipe', | 377 '../third_party/skia/include/pipe', |
369 '../third_party/skia/include/ports', | 378 '../third_party/skia/include/ports', |
370 '../third_party/skia/include/utils', | 379 '../third_party/skia/include/utils', |
371 ], | 380 ], |
372 }, | 381 }, |
373 } | 382 } |
OLD | NEW |