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

Side by Side Diff: BUILD.public

Issue 1457863002: Revert of Fix UB in SkDivBits (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 1 month 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 | src/core/SkMath.cpp » ('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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 ) 436 )
437 437
438 cc_test( 438 cc_test(
439 name = "dm", 439 name = "dm",
440 size = "large", 440 size = "large",
441 srcs = DM_SRCS + DM_PLATFORM_SRCS, 441 srcs = DM_SRCS + DM_PLATFORM_SRCS,
442 args = [ 442 args = [
443 "--nogpu", 443 "--nogpu",
444 "--verbose", 444 "--verbose",
445 # TODO(mtklein): maybe investigate why these fail? 445 # TODO(mtklein): maybe investigate why these fail?
446 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Code c ~Stream ~skps ~RecordDraw_TextBounds", 446 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Code c ~Stream ~skps ~Math ~RecordDraw_TextBounds",
447 "--resourcePath %s/resources" % BASE_DIR, 447 "--resourcePath %s/resources" % BASE_DIR,
448 "--images %s/resources" % BASE_DIR, 448 "--images %s/resources" % BASE_DIR,
449 ], 449 ],
450 copts = COPTS, 450 copts = COPTS,
451 data = glob(["resources/**/*"]), 451 data = glob(["resources/**/*"]),
452 defines = DEFINES, 452 defines = DEFINES,
453 includes = DM_INCLUDES, 453 includes = DM_INCLUDES,
454 deps = DM_EXTERNAL_DEPS + [ 454 deps = DM_EXTERNAL_DEPS + [
455 ":skia", 455 ":skia",
456 ] + EXTERNAL_DEPS_ALL, 456 ] + EXTERNAL_DEPS_ALL,
457 ) 457 )
OLDNEW
« no previous file with comments | « no previous file | src/core/SkMath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698