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

Unified Diff: BUILD.gn

Issue 2444333002: fix fuzz (Closed)
Patch Set: update gn bits Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/pathops/SkPathOpsTSect.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 19670169d896b24a9423672024dc8c2a081f3f7f..00f70d9c35c29257313bd3427f223721b1c6e875 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1134,6 +1134,31 @@ if (skia_enable_tools) {
testonly = true
}
+ pathops_tests_sources = exec_script("gyp/find.py",
+ [
+ "PathOps*.cpp",
+ rebase_path("tests"),
+ ],
+ "list lines",
+ [])
+
+ executable("pathops_unittest") {
+ sources =
+ pathops_tests_sources -
+ [ rebase_path("tests/PathOpsSkpClipTest.cpp") ] + # alternate main
+ [
+ rebase_path("tests/skia_test.cpp"),
+ rebase_path("tests/Test.cpp"),
+ ]
+ deps = [
+ ":flags",
+ ":gpu_tool_utils",
+ ":skia",
+ ":tool_utils",
+ ]
+ testonly = true
+ }
+
executable("dump_record") {
sources = [
"tools/DumpRecord.cpp",
« no previous file with comments | « no previous file | src/pathops/SkPathOpsTSect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698