| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 ) | 263 ) |
| 264 | 264 |
| 265 cc_test( | 265 cc_test( |
| 266 name = "dm", | 266 name = "dm", |
| 267 size = "large", | 267 size = "large", |
| 268 srcs = DM_SRCS, | 268 srcs = DM_SRCS, |
| 269 args = [ | 269 args = [ |
| 270 "--nogpu", | 270 "--nogpu", |
| 271 "--verbose", | 271 "--verbose", |
| 272 # TODO(mtklein): maybe investigate why these fail? | 272 # TODO(mtklein): maybe investigate why these fail? |
| 273 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Code
c ~Stream ~skps", | 273 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Code
c ~Stream ~skps ~Math", |
| 274 "--resourcePath %s/resources" % BASE_DIR, | 274 "--resourcePath %s/resources" % BASE_DIR, |
| 275 "--images %s/resources" % BASE_DIR, | 275 "--images %s/resources" % BASE_DIR, |
| 276 ], | 276 ], |
| 277 copts = COPTS, | 277 copts = COPTS, |
| 278 data = glob(["resources/**/*"]), | 278 data = glob(["resources/**/*"]), |
| 279 defines = DEFINES, | 279 defines = DEFINES, |
| 280 includes = DM_INCLUDES, | 280 includes = DM_INCLUDES, |
| 281 deps = DM_EXTERNAL_DEPS + [ | 281 deps = DM_EXTERNAL_DEPS + [ |
| 282 ":skia", | 282 ":skia", |
| 283 ], | 283 ], |
| 284 ) | 284 ) |
| OLD | NEW |