| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 "tools/LazyDecodeBitmap.cpp", | 286 "tools/LazyDecodeBitmap.cpp", |
| 287 "tools/LazyDecodeBitmap.h", | 287 "tools/LazyDecodeBitmap.h", |
| 288 "tools/ProcStats.cpp", | 288 "tools/ProcStats.cpp", |
| 289 "tools/ProcStats.h", | 289 "tools/ProcStats.h", |
| 290 "tools/Resources.cpp", | 290 "tools/Resources.cpp", |
| 291 "tools/Resources.h", | 291 "tools/Resources.h", |
| 292 "tools/SkBitmapRegionCanvas.cpp", | 292 "tools/SkBitmapRegionCanvas.cpp", |
| 293 "tools/SkBitmapRegionCanvas.h", | 293 "tools/SkBitmapRegionCanvas.h", |
| 294 "tools/SkBitmapRegionCodec.cpp", | 294 "tools/SkBitmapRegionCodec.cpp", |
| 295 "tools/SkBitmapRegionCodec.h", | 295 "tools/SkBitmapRegionCodec.h", |
| 296 "tools/SkBitmapRegionDecoderInterface.cpp", | 296 "tools/SkBitmapRegionDecoder.cpp", |
| 297 "tools/SkBitmapRegionDecoderInterface.h", | 297 "tools/SkBitmapRegionDecoder.h", |
| 298 "tools/SkBitmapRegionSampler.cpp", | 298 "tools/SkBitmapRegionSampler.cpp", |
| 299 "tools/SkBitmapRegionSampler.h", | 299 "tools/SkBitmapRegionSampler.h", |
| 300 "tools/flags/*.cpp", | 300 "tools/flags/*.cpp", |
| 301 "tools/flags/*.h", | 301 "tools/flags/*.h", |
| 302 "tools/sk_tool_utils.cpp", | 302 "tools/sk_tool_utils.cpp", |
| 303 "tools/sk_tool_utils.h", | 303 "tools/sk_tool_utils.h", |
| 304 "tools/sk_tool_utils_font.cpp", | 304 "tools/sk_tool_utils_font.cpp", |
| 305 "tools/timer/*.cpp", | 305 "tools/timer/*.cpp", |
| 306 "tools/timer/*.h", | 306 "tools/timer/*.h", |
| 307 ], | 307 ], |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 "--images %s/resources" % BASE_DIR, | 446 "--images %s/resources" % BASE_DIR, |
| 447 ], | 447 ], |
| 448 copts = COPTS, | 448 copts = COPTS, |
| 449 data = glob(["resources/**/*"]), | 449 data = glob(["resources/**/*"]), |
| 450 defines = DEFINES, | 450 defines = DEFINES, |
| 451 includes = DM_INCLUDES, | 451 includes = DM_INCLUDES, |
| 452 deps = DM_EXTERNAL_DEPS + [ | 452 deps = DM_EXTERNAL_DEPS + [ |
| 453 ":skia", | 453 ":skia", |
| 454 ] + EXTERNAL_DEPS_ALL, | 454 ] + EXTERNAL_DEPS_ALL, |
| 455 ) | 455 ) |
| OLD | NEW |