Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: BUILD.public

Issue 1406283002: Include resources directory in google3 sync. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LICENSE » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 )
OLDNEW
« no previous file with comments | « no previous file | LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698