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

Side by Side Diff: skia/skia_library.gypi

Issue 831453004: Do not depend on or try to configure pangocairo when use_pango == 0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Keep pangocario target unconditionally Created 5 years, 11 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 | « build/linux/system.gyp ('k') | no next file » | 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
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', { 247 [ 'use_cairo == 1 and use_pango == 1', {
248 'dependencies': [ 248 'dependencies': [
249 '../build/linux/system.gyp:pangocairo', 249 '../build/linux/system.gyp:pangocairo',
250 ], 250 ],
251 }], 251 }],
252 [ 'OS=="win" or OS=="mac" or OS=="ios" or OS=="android"', { 252 [ 'OS=="win" or OS=="mac" or OS=="ios" or OS=="android"', {
253 'sources!': [ 253 'sources!': [
254 '../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp', 254 '../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp',
255 '../third_party/skia/src/ports/SkFontHost_fontconfig.cpp', 255 '../third_party/skia/src/ports/SkFontHost_fontconfig.cpp',
256 '../third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp', 256 '../third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp',
257 ], 257 ],
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 '../third_party/skia/include/pdf', 383 '../third_party/skia/include/pdf',
384 '../third_party/skia/include/gpu', 384 '../third_party/skia/include/gpu',
385 '../third_party/skia/include/lazy', 385 '../third_party/skia/include/lazy',
386 '../third_party/skia/include/pathops', 386 '../third_party/skia/include/pathops',
387 '../third_party/skia/include/pipe', 387 '../third_party/skia/include/pipe',
388 '../third_party/skia/include/ports', 388 '../third_party/skia/include/ports',
389 '../third_party/skia/include/utils', 389 '../third_party/skia/include/utils',
390 ], 390 ],
391 }, 391 },
392 } 392 }
OLDNEW
« no previous file with comments | « build/linux/system.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698