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

Side by Side Diff: ui/views/BUILD.gn

Issue 2340993002: Tweaks to "Allow InkDropRipple to co-exist with highlight or not exist at all." (Closed)
Patch Set: Fixed InkDropImplTest.HighlightCanExistWithoutRipple. Created 4 years, 3 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/test.gni") 7 import("//testing/test.gni")
8 8
9 config("flags") { 9 config("flags") {
10 defines = [ "TOOLKIT_VIEWS=1" ] 10 defines = [ "TOOLKIT_VIEWS=1" ]
11 } 11 }
12 12
13 component("views") { 13 component("views") {
14 all_dependent_configs = [ ":flags" ] 14 all_dependent_configs = [ ":flags" ]
15 sources = [ 15 sources = [
16 "accessibility/native_view_accessibility.cc", 16 "accessibility/native_view_accessibility.cc",
17 "accessibility/native_view_accessibility.h", 17 "accessibility/native_view_accessibility.h",
18 "accessibility/native_view_accessibility_win.cc", 18 "accessibility/native_view_accessibility_win.cc",
19 "accessibility/native_view_accessibility_win.h", 19 "accessibility/native_view_accessibility_win.h",
20 "accessible_pane_view.cc", 20 "accessible_pane_view.cc",
21 "accessible_pane_view.h", 21 "accessible_pane_view.h",
22 "animation/bounds_animator.cc", 22 "animation/bounds_animator.cc",
23 "animation/bounds_animator.h", 23 "animation/bounds_animator.h",
24 "animation/empty_ink_drop_ripple.cc",
25 "animation/empty_ink_drop_ripple.h",
24 "animation/flood_fill_ink_drop_ripple.cc", 26 "animation/flood_fill_ink_drop_ripple.cc",
25 "animation/flood_fill_ink_drop_ripple.h", 27 "animation/flood_fill_ink_drop_ripple.h",
26 "animation/ink_drop.h", 28 "animation/ink_drop.h",
27 "animation/ink_drop_animation_ended_reason.cc", 29 "animation/ink_drop_animation_ended_reason.cc",
28 "animation/ink_drop_animation_ended_reason.h", 30 "animation/ink_drop_animation_ended_reason.h",
29 "animation/ink_drop_highlight.cc", 31 "animation/ink_drop_highlight.cc",
30 "animation/ink_drop_highlight.h", 32 "animation/ink_drop_highlight.h",
31 "animation/ink_drop_highlight_observer.h", 33 "animation/ink_drop_highlight_observer.h",
32 "animation/ink_drop_host.h", 34 "animation/ink_drop_host.h",
33 "animation/ink_drop_host_view.cc", 35 "animation/ink_drop_host_view.cc",
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 "CoreGraphics.framework", 628 "CoreGraphics.framework",
627 "Foundation.framework", 629 "Foundation.framework",
628 "QuartzCore.framework", # Required by bridged_native_widget.mm. 630 "QuartzCore.framework", # Required by bridged_native_widget.mm.
629 ] 631 ]
630 } 632 }
631 } 633 }
632 634
633 static_library("test_support_internal") { 635 static_library("test_support_internal") {
634 testonly = true 636 testonly = true
635 sources = [ 637 sources = [
638 "animation/test/empty_ink_drop_ripple_test_api.cc",
639 "animation/test/empty_ink_drop_ripple_test_api.h",
636 "animation/test/flood_fill_ink_drop_ripple_test_api.cc", 640 "animation/test/flood_fill_ink_drop_ripple_test_api.cc",
637 "animation/test/flood_fill_ink_drop_ripple_test_api.h", 641 "animation/test/flood_fill_ink_drop_ripple_test_api.h",
638 "animation/test/ink_drop_highlight_test_api.cc", 642 "animation/test/ink_drop_highlight_test_api.cc",
639 "animation/test/ink_drop_highlight_test_api.h", 643 "animation/test/ink_drop_highlight_test_api.h",
640 "animation/test/ink_drop_host_view_test_api.cc", 644 "animation/test/ink_drop_host_view_test_api.cc",
641 "animation/test/ink_drop_host_view_test_api.h", 645 "animation/test/ink_drop_host_view_test_api.h",
642 "animation/test/ink_drop_impl_test_api.cc", 646 "animation/test/ink_drop_impl_test_api.cc",
643 "animation/test/ink_drop_impl_test_api.h", 647 "animation/test/ink_drop_impl_test_api.h",
644 "animation/test/ink_drop_ripple_test_api.cc", 648 "animation/test/ink_drop_ripple_test_api.cc",
645 "animation/test/ink_drop_ripple_test_api.h", 649 "animation/test/ink_drop_ripple_test_api.h",
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 "//ui/base:test_support", 1003 "//ui/base:test_support",
1000 "//ui/compositor", 1004 "//ui/compositor",
1001 "//ui/events:test_support", 1005 "//ui/events:test_support",
1002 "//ui/gl:test_support", 1006 "//ui/gl:test_support",
1003 "//ui/resources", 1007 "//ui/resources",
1004 "//ui/resources:ui_test_pak", 1008 "//ui/resources:ui_test_pak",
1005 "//ui/strings", 1009 "//ui/strings",
1006 ] 1010 ]
1007 } 1011 }
1008 } 1012 }
OLDNEW
« no previous file with comments | « no previous file | ui/views/animation/empty_ink_drop_ripple.h » ('j') | ui/views/animation/ink_drop_ripple.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698