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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 'dependencies': [ | 237 'dependencies': [ |
238 '../build/linux/system.gyp:fontconfig', | 238 '../build/linux/system.gyp:fontconfig', |
239 '../build/linux/system.gyp:freetype2', | 239 '../build/linux/system.gyp:freetype2', |
240 '../third_party/icu/icu.gyp:icuuc', | 240 '../third_party/icu/icu.gyp:icuuc', |
241 ], | 241 ], |
242 'cflags': [ | 242 'cflags': [ |
243 '-Wno-unused', | 243 '-Wno-unused', |
244 '-Wno-unused-function', | 244 '-Wno-unused-function', |
245 ], | 245 ], |
246 }], | 246 }], |
| 247 [ 'use_cairo == 1 and use_pango == 1', { |
| 248 'dependencies': [ |
| 249 '../build/linux/system.gyp:pangocairo', |
| 250 ], |
| 251 }], |
247 [ 'OS=="win" or OS=="mac" or OS=="ios" or OS=="android"', { | 252 [ 'OS=="win" or OS=="mac" or OS=="ios" or OS=="android"', { |
248 'sources!': [ | 253 'sources!': [ |
249 '../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp', | 254 '../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp', |
250 '../third_party/skia/src/ports/SkFontHost_fontconfig.cpp', | 255 '../third_party/skia/src/ports/SkFontHost_fontconfig.cpp', |
251 '../third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp', | 256 '../third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp', |
252 ], | 257 ], |
253 }], | 258 }], |
254 [ 'OS=="win" or OS=="mac" or OS=="ios"', { | 259 [ 'OS=="win" or OS=="mac" or OS=="ios"', { |
255 'sources!': [ | 260 'sources!': [ |
256 '../third_party/skia/src/ports/SkFontHost_FreeType.cpp', | 261 '../third_party/skia/src/ports/SkFontHost_FreeType.cpp', |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 '../third_party/skia/include/pdf', | 383 '../third_party/skia/include/pdf', |
379 '../third_party/skia/include/gpu', | 384 '../third_party/skia/include/gpu', |
380 '../third_party/skia/include/lazy', | 385 '../third_party/skia/include/lazy', |
381 '../third_party/skia/include/pathops', | 386 '../third_party/skia/include/pathops', |
382 '../third_party/skia/include/pipe', | 387 '../third_party/skia/include/pipe', |
383 '../third_party/skia/include/ports', | 388 '../third_party/skia/include/ports', |
384 '../third_party/skia/include/utils', | 389 '../third_party/skia/include/utils', |
385 ], | 390 ], |
386 }, | 391 }, |
387 } | 392 } |
OLD | NEW |