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

Unified Diff: skia/BUILD.gn

Issue 2040233002: Implement sk_sp<SkImageFilter> StructTraits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't build StructTraitsTest on iOS Created 4 years, 6 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 | skia/public/interfaces/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/BUILD.gn
diff --git a/skia/BUILD.gn b/skia/BUILD.gn
index 2020788040448fbc0333ca74bf6f4846dfa28d81..4b0bdd15e8b2c1087e5dd1d21ce792be5c6b6e2a 100644
--- a/skia/BUILD.gn
+++ b/skia/BUILD.gn
@@ -22,6 +22,7 @@ skia_support_pdf = !is_ios && (enable_basic_printing || enable_print_preview)
declare_args() {
skia_whitelist_serialized_typefaces = false
+
# TODO(crbug.com/607933): Once GYP is no longer supported, port iOS to use
# optimised skia.
skia_build_no_opts = is_ios
@@ -721,14 +722,21 @@ test("skia_unittests") {
deps = [
":skia",
"//base",
- "//base/test:run_all_unittests",
+ "//mojo/edk/test:run_all_unittests",
"//testing/gtest",
"//ui/gfx",
"//ui/gfx/geometry",
]
if (!is_ios) {
- deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc.
+ sources += [ "public/interfaces/test/struct_traits_unittest.cc" ]
+ deps += [
+ # TODO: Fix this test to not depend on cc.
+ "//cc:test_support",
+ "//mojo/edk/system",
+ "//mojo/public/cpp/bindings",
+ "//skia/public/interfaces:test_interfaces",
+ ]
}
}
« no previous file with comments | « no previous file | skia/public/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698