| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 ) |
| OLD | NEW |