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

Side by Side Diff: BUILD.public

Issue 1455163004: Fix UB in SkDivBits (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: pin 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 | include/core/SkFixed.h » ('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 # All platform-independent SRCS. 8 # All platform-independent SRCS.
9 BASE_SRCS = glob( 9 BASE_SRCS = glob(
10 [ 10 [
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 ) 432 )
433 433
434 cc_test( 434 cc_test(
435 name = "dm", 435 name = "dm",
436 size = "large", 436 size = "large",
437 srcs = DM_SRCS + DM_PLATFORM_SRCS, 437 srcs = DM_SRCS + DM_PLATFORM_SRCS,
438 args = [ 438 args = [
439 "--nogpu", 439 "--nogpu",
440 "--verbose", 440 "--verbose",
441 # TODO(mtklein): maybe investigate why these fail? 441 # TODO(mtklein): maybe investigate why these fail?
442 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Code c ~Stream ~skps ~Math ~RecordDraw_TextBounds", 442 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Code c ~Stream ~skps ~RecordDraw_TextBounds",
443 "--resourcePath %s/resources" % BASE_DIR, 443 "--resourcePath %s/resources" % BASE_DIR,
444 "--images %s/resources" % BASE_DIR, 444 "--images %s/resources" % BASE_DIR,
445 ], 445 ],
446 copts = COPTS, 446 copts = COPTS,
447 data = glob(["resources/**/*"]), 447 data = glob(["resources/**/*"]),
448 defines = DEFINES, 448 defines = DEFINES,
449 includes = DM_INCLUDES, 449 includes = DM_INCLUDES,
450 deps = DM_EXTERNAL_DEPS + [ 450 deps = DM_EXTERNAL_DEPS + [
451 ":skia", 451 ":skia",
452 ] + EXTERNAL_DEPS_ALL, 452 ] + EXTERNAL_DEPS_ALL,
453 ) 453 )
OLDNEW
« no previous file with comments | « no previous file | include/core/SkFixed.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698