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

Side by Side Diff: BUILD.public

Issue 1561753002: In Google3 build, use SK_SFNTLY_SUBSETTER define to enable/disable sfntly. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 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 | « no previous file | src/pdf/SkPDFFont.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Description: 1 # Description:
2 # Skia graphics library. 2 # Skia graphics library.
3 # 3 #
4 # Definitions for Google BUILD file. 4 # Definitions for Google BUILD file.
5 5
6 exports_files(["BUILD.public"]) 6 exports_files(["BUILD.public"])
7 7
8 # All platform-independent SRCS. 8 # All platform-independent SRCS.
9 BASE_SRCS = glob( 9 BASE_SRCS = glob(
10 [ 10 [
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 ] 393 ]
394 394
395 DEFINES_IOS = [ 395 DEFINES_IOS = [
396 "SK_BUILD_FOR_IOS", 396 "SK_BUILD_FOR_IOS",
397 "SK_IGNORE_ETC1_SUPPORT", 397 "SK_IGNORE_ETC1_SUPPORT",
398 ] 398 ]
399 399
400 DEFINES_UNIX = [ 400 DEFINES_UNIX = [
401 "SK_BUILD_FOR_UNIX", 401 "SK_BUILD_FOR_UNIX",
402 "SK_SAMPLES_FOR_X", 402 "SK_SAMPLES_FOR_X",
403 "SK_SFNTLY_SUBSETTER",
403 ] 404 ]
404 405
405 DEFINES_ALL = [ 406 DEFINES_ALL = [
406 # Chrome DEFINES. 407 # Chrome DEFINES.
407 "SK_USE_FLOATBITS", 408 "SK_USE_FLOATBITS",
408 "SK_USE_FREETYPE_EMBOLDEN", 409 "SK_USE_FREETYPE_EMBOLDEN",
409 # Turn on a few Google3-specific build fixes. 410 # Turn on a few Google3-specific build fixes.
410 "GOOGLE3", 411 "GOOGLE3",
411 ] 412 ]
412 413
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 "--images %s/resources" % BASE_DIR, 489 "--images %s/resources" % BASE_DIR,
489 ], 490 ],
490 copts = COPTS, 491 copts = COPTS,
491 data = glob(["resources/**/*"]), 492 data = glob(["resources/**/*"]),
492 defines = DEFINES, 493 defines = DEFINES,
493 includes = DM_INCLUDES, 494 includes = DM_INCLUDES,
494 deps = DM_EXTERNAL_DEPS + [ 495 deps = DM_EXTERNAL_DEPS + [
495 ":skia", 496 ":skia",
496 ] + EXTERNAL_DEPS_ALL, 497 ] + EXTERNAL_DEPS_ALL,
497 ) 498 )
OLDNEW
« no previous file with comments | « no previous file | src/pdf/SkPDFFont.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698