| 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 # Platform-independent SRCS | 8 # Platform-independent SRCS |
| 9 SRCS = glob( | 9 SRCS = glob( |
| 10 [ | 10 [ |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 # Not used. | 220 # Not used. |
| 221 "include/animator/**/*", | 221 "include/animator/**/*", |
| 222 "include/views/**/*", | 222 "include/views/**/*", |
| 223 "include/xml/SkBML_WXMLParser.h", | 223 "include/xml/SkBML_WXMLParser.h", |
| 224 "include/xml/SkBML_XMLParser.h", | 224 "include/xml/SkBML_XMLParser.h", |
| 225 ], | 225 ], |
| 226 ) | 226 ) |
| 227 | 227 |
| 228 # Includes needed by Skia implementation. Not public includes. | 228 # Includes needed by Skia implementation. Not public includes. |
| 229 INCLUDES = [ | 229 INCLUDES = [ |
| 230 "include/android", |
| 230 "include/c", | 231 "include/c", |
| 231 "include/codec", | 232 "include/codec", |
| 232 "include/config", | 233 "include/config", |
| 233 "include/core", | 234 "include/core", |
| 234 "include/effects", | 235 "include/effects", |
| 235 "include/gpu", | 236 "include/gpu", |
| 236 "include/images", | 237 "include/images", |
| 237 "include/pathops", | 238 "include/pathops", |
| 238 "include/pipe", | 239 "include/pipe", |
| 239 "include/ports", | 240 "include/ports", |
| 240 "include/private", | 241 "include/private", |
| 241 "include/utils", | 242 "include/utils", |
| 242 "include/utils/mac", | 243 "include/utils/mac", |
| 243 "include/utils/win", | 244 "include/utils/win", |
| 244 "include/svg", | 245 "include/svg", |
| 245 "include/xml", | 246 "include/xml", |
| 247 "src/codec", |
| 246 "src/core", | 248 "src/core", |
| 247 "src/gpu", | 249 "src/gpu", |
| 248 "src/image", | 250 "src/image", |
| 249 "src/lazy", | 251 "src/lazy", |
| 250 "src/opts", | 252 "src/opts", |
| 251 "src/pdf", | 253 "src/pdf", |
| 252 "src/sfnt", | 254 "src/sfnt", |
| 253 "src/utils", | 255 "src/utils", |
| 254 "third_party/etc1", | 256 "third_party/etc1", |
| 255 "third_party/ktx", | 257 "third_party/ktx", |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 "--images %s/resources" % BASE_DIR, | 448 "--images %s/resources" % BASE_DIR, |
| 447 ], | 449 ], |
| 448 copts = COPTS, | 450 copts = COPTS, |
| 449 data = glob(["resources/**/*"]), | 451 data = glob(["resources/**/*"]), |
| 450 defines = DEFINES, | 452 defines = DEFINES, |
| 451 includes = DM_INCLUDES, | 453 includes = DM_INCLUDES, |
| 452 deps = DM_EXTERNAL_DEPS + [ | 454 deps = DM_EXTERNAL_DEPS + [ |
| 453 ":skia", | 455 ":skia", |
| 454 ] + EXTERNAL_DEPS_ALL, | 456 ] + EXTERNAL_DEPS_ALL, |
| 455 ) | 457 ) |
| OLD | NEW |