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

Side by Side Diff: BUILD.public

Issue 1418903002: Omit Math from DM on Google3 because it fails under the MSAN config. (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 | no next file » | 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 )
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698