1package(default_visibility = ["//:__subpackages__"]) 2 3filegroup( 4 name = "cmdline", 5 srcs = [ 6 "flags/CommandLineFlags.cpp", 7 "flags/CommandLineFlags.h", 8 ], 9) 10 11filegroup( 12 name = "srcs", 13 testonly = True, 14 srcs = [ 15 "Registry.h", 16 "ResourceFactory.h", 17 "Resources.cpp", 18 "Resources.h", 19 "ToolUtils.cpp", 20 "ToolUtils.h", 21 "flags/CommandLineFlags.cpp", 22 "flags/CommandLineFlags.h", 23 "fonts/TestFontMgr.cpp", 24 "fonts/TestFontMgr.h", 25 "fonts/TestTypeface.cpp", 26 "fonts/TestTypeface.h", 27 "fonts/ToolUtilsFont.cpp", 28 "gpu/FenceSync.h", 29 "gpu/FlushFinishTracker.cpp", 30 "gpu/FlushFinishTracker.h", 31 "gpu/GpuTimer.h", 32 "gpu/GrContextFactory.cpp", 33 "gpu/GrContextFactory.h", 34 "gpu/TestContext.cpp", 35 "gpu/TestContext.h", 36 "gpu/gl/GLTestContext.cpp", 37 "gpu/gl/GLTestContext.h", 38 "gpu/gl/command_buffer/GLTestContext_command_buffer.h", 39 "gpu/mock/MockTestContext.h", 40 ], 41) 42 43filegroup( 44 name = "txts", 45 testonly = True, 46 srcs = [ 47 "fonts/test_font_index.inc", 48 "fonts/test_font_monospace.inc", 49 "fonts/test_font_sans_serif.inc", 50 "fonts/test_font_serif.inc", 51 ], 52) 53 54filegroup( 55 name = "hash_and_encode", 56 testonly = True, 57 srcs = [ 58 "HashAndEncode.cpp", 59 "HashAndEncode.h", 60 ], 61) 62