| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "src/ports/*android*", | 90 "src/ports/*android*", |
| 91 "src/ports/*chromium*", | 91 "src/ports/*chromium*", |
| 92 "src/ports/*mac*", | 92 "src/ports/*mac*", |
| 93 "src/ports/*mozalloc*", | 93 "src/ports/*mozalloc*", |
| 94 "src/ports/*nacl*", | 94 "src/ports/*nacl*", |
| 95 "src/ports/*win*", | 95 "src/ports/*win*", |
| 96 "src/ports/SkFontConfigInterface_direct_factory.cpp", | 96 "src/ports/SkFontConfigInterface_direct_factory.cpp", |
| 97 "src/ports/SkFontMgr_custom_directory_factory.cpp", | 97 "src/ports/SkFontMgr_custom_directory_factory.cpp", |
| 98 "src/ports/SkFontMgr_custom_embedded_factory.cpp", | 98 "src/ports/SkFontMgr_custom_embedded_factory.cpp", |
| 99 "src/ports/SkFontMgr_empty_factory.cpp", | 99 "src/ports/SkFontMgr_empty_factory.cpp", |
| 100 "src/ports/SkFontMgr_fontconfig.cpp", |
| 100 "src/ports/SkImageDecoder_CG.cpp", | 101 "src/ports/SkImageDecoder_CG.cpp", |
| 101 "src/ports/SkFontMgr_fontconfig_factory.cpp", | 102 "src/ports/SkFontMgr_fontconfig_factory.cpp", |
| 102 "src/ports/SkImageDecoder_WIC.cpp", | 103 "src/ports/SkImageDecoder_WIC.cpp", |
| 103 "src/ports/SkImageDecoder_empty.cpp", | 104 "src/ports/SkImageDecoder_empty.cpp", |
| 104 "src/ports/SkImageGenerator_none.cpp", | 105 "src/ports/SkImageGenerator_none.cpp", |
| 105 "src/ports/SkTLS_none.cpp", | 106 "src/ports/SkTLS_none.cpp", |
| 106 ], | 107 ], |
| 107 ) | 108 ) |
| 108 | 109 |
| 109 # Platform-dependent SRCS for google3-default Android. | 110 # Platform-dependent SRCS for google3-default Android. |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 "--images %s/resources" % BASE_DIR, | 452 "--images %s/resources" % BASE_DIR, |
| 452 ], | 453 ], |
| 453 copts = COPTS, | 454 copts = COPTS, |
| 454 data = glob(["resources/**/*"]), | 455 data = glob(["resources/**/*"]), |
| 455 defines = DEFINES, | 456 defines = DEFINES, |
| 456 includes = DM_INCLUDES, | 457 includes = DM_INCLUDES, |
| 457 deps = DM_EXTERNAL_DEPS + [ | 458 deps = DM_EXTERNAL_DEPS + [ |
| 458 ":skia", | 459 ":skia", |
| 459 ] + EXTERNAL_DEPS_ALL, | 460 ] + EXTERNAL_DEPS_ALL, |
| 460 ) | 461 ) |
| OLD | NEW |