Chromium Code Reviews

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

Issue 2650343008: Implement Element.scrollIntoView for scroll-behavior: smooth. (Closed)
Patch Set: Added SimTest. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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 1212 matching lines...)
1223 "scheduler/renderer/web_frame_scheduler_impl.cc", 1223 "scheduler/renderer/web_frame_scheduler_impl.cc",
1224 "scheduler/renderer/web_frame_scheduler_impl.h", 1224 "scheduler/renderer/web_frame_scheduler_impl.h",
1225 "scheduler/renderer/web_view_scheduler_impl.cc", 1225 "scheduler/renderer/web_view_scheduler_impl.cc",
1226 "scheduler/renderer/web_view_scheduler_impl.h", 1226 "scheduler/renderer/web_view_scheduler_impl.h",
1227 "scheduler/renderer/webthread_impl_for_renderer_scheduler.cc", 1227 "scheduler/renderer/webthread_impl_for_renderer_scheduler.cc",
1228 "scheduler/renderer/webthread_impl_for_renderer_scheduler.h", 1228 "scheduler/renderer/webthread_impl_for_renderer_scheduler.h",
1229 "scheduler/utility/webthread_impl_for_utility_thread.cc", 1229 "scheduler/utility/webthread_impl_for_utility_thread.cc",
1230 "scroll/MainThreadScrollingReason.h", 1230 "scroll/MainThreadScrollingReason.h",
1231 "scroll/ProgrammaticScrollAnimator.cpp", 1231 "scroll/ProgrammaticScrollAnimator.cpp",
1232 "scroll/ProgrammaticScrollAnimator.h", 1232 "scroll/ProgrammaticScrollAnimator.h",
1233 "scroll/ProgrammaticScrollCoordinator.cpp",
1234 "scroll/ProgrammaticScrollCoordinator.h",
1233 "scroll/ScrollAnimator.cpp", 1235 "scroll/ScrollAnimator.cpp",
1234 "scroll/ScrollAnimator.h", 1236 "scroll/ScrollAnimator.h",
1235 "scroll/ScrollAnimatorBase.cpp", 1237 "scroll/ScrollAnimatorBase.cpp",
1236 "scroll/ScrollAnimatorBase.h", 1238 "scroll/ScrollAnimatorBase.h",
1237 "scroll/ScrollAnimatorCompositorCoordinator.cpp", 1239 "scroll/ScrollAnimatorCompositorCoordinator.cpp",
1238 "scroll/ScrollAnimatorCompositorCoordinator.h", 1240 "scroll/ScrollAnimatorCompositorCoordinator.h",
1239 "scroll/ScrollStateData.h", 1241 "scroll/ScrollStateData.h",
1240 "scroll/ScrollTypes.h", 1242 "scroll/ScrollTypes.h",
1241 "scroll/ScrollableArea.cpp", 1243 "scroll/ScrollableArea.cpp",
1242 "scroll/ScrollableArea.h", 1244 "scroll/ScrollableArea.h",
(...skipping 829 matching lines...)
2072 "//third_party/WebKit/Source:config", 2074 "//third_party/WebKit/Source:config",
2073 "//third_party/WebKit/Source:inside_blink", 2075 "//third_party/WebKit/Source:inside_blink",
2074 ] 2076 ]
2075 2077
2076 deps = [ 2078 deps = [
2077 ":test_support", 2079 ":test_support",
2078 "//testing/gmock", 2080 "//testing/gmock",
2079 "//testing/gtest", 2081 "//testing/gtest",
2080 ] 2082 ]
2081 } 2083 }
OLDNEW

Powered by Google App Engine