| 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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 ) | 436 ) |
| 437 | 437 |
| 438 cc_test( | 438 cc_test( |
| 439 name = "dm", | 439 name = "dm", |
| 440 size = "large", | 440 size = "large", |
| 441 srcs = DM_SRCS + DM_PLATFORM_SRCS, | 441 srcs = DM_SRCS + DM_PLATFORM_SRCS, |
| 442 args = [ | 442 args = [ |
| 443 "--nogpu", | 443 "--nogpu", |
| 444 "--verbose", | 444 "--verbose", |
| 445 # TODO(mtklein): maybe investigate why these fail? | 445 # TODO(mtklein): maybe investigate why these fail? |
| 446 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Code
c ~Stream ~skps ~RecordDraw_TextBounds", | 446 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Code
c ~Stream ~skps ~Math ~RecordDraw_TextBounds", |
| 447 "--resourcePath %s/resources" % BASE_DIR, | 447 "--resourcePath %s/resources" % BASE_DIR, |
| 448 "--images %s/resources" % BASE_DIR, | 448 "--images %s/resources" % BASE_DIR, |
| 449 ], | 449 ], |
| 450 copts = COPTS, | 450 copts = COPTS, |
| 451 data = glob(["resources/**/*"]), | 451 data = glob(["resources/**/*"]), |
| 452 defines = DEFINES, | 452 defines = DEFINES, |
| 453 includes = DM_INCLUDES, | 453 includes = DM_INCLUDES, |
| 454 deps = DM_EXTERNAL_DEPS + [ | 454 deps = DM_EXTERNAL_DEPS + [ |
| 455 ":skia", | 455 ":skia", |
| 456 ] + EXTERNAL_DEPS_ALL, | 456 ] + EXTERNAL_DEPS_ALL, |
| 457 ) | 457 ) |
| OLD | NEW |