| OLD | NEW |
| 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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 "//ui/base:test_support", | 1001 "//ui/base:test_support", |
| 1000 "//ui/compositor", | 1002 "//ui/compositor", |
| 1001 "//ui/events:test_support", | 1003 "//ui/events:test_support", |
| 1002 "//ui/gl:test_support", | 1004 "//ui/gl:test_support", |
| 1003 "//ui/resources", | 1005 "//ui/resources", |
| 1004 "//ui/resources:ui_test_pak", | 1006 "//ui/resources:ui_test_pak", |
| 1005 "//ui/strings", | 1007 "//ui/strings", |
| 1006 ] | 1008 ] |
| 1007 } | 1009 } |
| 1008 } | 1010 } |
| OLD | NEW |