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

Unified Diff: ui/native_theme/BUILD.gn

Issue 2009733002: Draw nicer arrows when the scrollbar buttons are not square. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no floats allowed 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 | ui/native_theme/native_theme_aura_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/native_theme/BUILD.gn
diff --git a/ui/native_theme/BUILD.gn b/ui/native_theme/BUILD.gn
index fbe42371ce901615092026b78a3692a9a26238d2..b79e1131c2a6130c8c6db74ee99af5791b225007 100644
--- a/ui/native_theme/BUILD.gn
+++ b/ui/native_theme/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//build/config/ui.gni")
+import("//testing/test.gni")
component("native_theme") {
sources = [
@@ -62,3 +63,24 @@ component("native_theme") {
]
}
}
+
+test("native_theme_unittests") {
+ sources = []
+
+ if (use_aura) {
+ sources += [ "native_theme_aura_unittest.cc" ]
+ }
+
+ if (is_mac) {
+ sources += [ "native_theme_mac_unittest.cc" ]
+ }
+
+ deps = [
+ ":native_theme",
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//skia:skia",
+ "//testing/gtest",
+ "//ui/gfx/geometry:geometry",
+ ]
+}
« no previous file with comments | « no previous file | ui/native_theme/native_theme_aura_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698