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

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2590163004: Aura overlay scrollbars shouldn't invalidate thumb on scroll or enabled state. (Closed)
Patch Set: Nit Created 3 years, 12 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/WebKit/public/public_features.gni") 9 import("//third_party/WebKit/public/public_features.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 1814 matching lines...) Expand 10 before | Expand all | Expand 10 after
1825 } else if (is_posix) { 1825 } else if (is_posix) {
1826 sources += [ "text/LocaleICUTest.cpp" ] 1826 sources += [ "text/LocaleICUTest.cpp" ]
1827 } 1827 }
1828 1828
1829 if (!is_mac) { 1829 if (!is_mac) {
1830 sources += [ "scroll/ScrollAnimatorTest.cpp" ] 1830 sources += [ "scroll/ScrollAnimatorTest.cpp" ]
1831 } 1831 }
1832 1832
1833 if (use_default_render_theme) { 1833 if (use_default_render_theme) {
1834 sources += [ "scroll/ScrollbarThemeAuraTest.cpp" ] 1834 sources += [ "scroll/ScrollbarThemeAuraTest.cpp" ]
1835 sources += [ "scroll/ScrollbarThemeOverlayTest.cpp" ]
jbroman 2016/12/22 15:21:00 If you leave this here, put these in one list: so
bokan 2016/12/22 16:10:55 Good catch, I just put it beside the AuraTest with
1835 } 1836 }
1836 1837
1837 sources += [ "testing/RunAllTests.cpp" ] 1838 sources += [ "testing/RunAllTests.cpp" ]
1838 1839
1839 configs += [ 1840 configs += [
1840 ":blink_platform_pch", 1841 ":blink_platform_pch",
1841 "//third_party/WebKit/Source/wtf:wtf_config", 1842 "//third_party/WebKit/Source/wtf:wtf_config",
1842 "//third_party/WebKit/Source:config", 1843 "//third_party/WebKit/Source:config",
1843 ] 1844 ]
1844 1845
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
2070 "//third_party/WebKit/Source:config", 2071 "//third_party/WebKit/Source:config",
2071 "//third_party/WebKit/Source:inside_blink", 2072 "//third_party/WebKit/Source:inside_blink",
2072 ] 2073 ]
2073 2074
2074 deps = [ 2075 deps = [
2075 ":test_support", 2076 ":test_support",
2076 "//testing/gmock", 2077 "//testing/gmock",
2077 "//testing/gtest", 2078 "//testing/gtest",
2078 ] 2079 ]
2079 } 2080 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698