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