Chromium Code Reviews| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 267 ) | 267 ) |
| 268 | 268 |
| 269 cc_test( | 269 cc_test( |
| 270 name = "dm", | 270 name = "dm", |
| 271 size = "large", | 271 size = "large", |
| 272 srcs = DM_SRCS, | 272 srcs = DM_SRCS, |
| 273 args = [ | 273 args = [ |
| 274 "--nogpu", | 274 "--nogpu", |
| 275 "--verbose", | 275 "--verbose", |
| 276 # TODO(mtklein): maybe investigate why these fail? | 276 # TODO(mtklein): maybe investigate why these fail? |
| 277 "--match ~FontMgr ~Gif ~Scalar ~Canvas ~Codec_stripes ~Stream ~skps", | 277 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Code c ~Stream ~skps", |
|
mtklein
2015/10/19 20:47:01
IIRC, ~Codec will kill all the tests matching "Cod
| |
| 278 # TODO(benjaminwagner): dm can't find resources when running on TAP. | |
| 279 "--resourcePath %s/resources" % BASE_DIR, | 278 "--resourcePath %s/resources" % BASE_DIR, |
| 280 "--images %s/resources" % BASE_DIR, | 279 "--images %s/resources" % BASE_DIR, |
| 281 ], | 280 ], |
| 282 copts = COPTS, | 281 copts = COPTS, |
| 283 data = glob(["resources/*"]), | 282 data = glob(["resources/**/*"]), |
| 284 defines = DEFINES, | 283 defines = DEFINES, |
| 285 includes = DM_INCLUDES, | 284 includes = DM_INCLUDES, |
| 286 deps = DM_EXTERNAL_DEPS + [ | 285 deps = DM_EXTERNAL_DEPS + [ |
| 287 ":skia", | 286 ":skia", |
| 288 ], | 287 ], |
| 289 ) | 288 ) |
| OLD | NEW |