| 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" ] |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "controls/button/label_button_border.h", | 101 "controls/button/label_button_border.h", |
| 102 "controls/button/md_text_button.cc", | 102 "controls/button/md_text_button.cc", |
| 103 "controls/button/md_text_button.h", | 103 "controls/button/md_text_button.h", |
| 104 "controls/button/menu_button.cc", | 104 "controls/button/menu_button.cc", |
| 105 "controls/button/menu_button.h", | 105 "controls/button/menu_button.h", |
| 106 "controls/button/menu_button_listener.h", | 106 "controls/button/menu_button_listener.h", |
| 107 "controls/button/radio_button.cc", | 107 "controls/button/radio_button.cc", |
| 108 "controls/button/radio_button.h", | 108 "controls/button/radio_button.h", |
| 109 "controls/button/toggle_button.cc", | 109 "controls/button/toggle_button.cc", |
| 110 "controls/button/toggle_button.h", | 110 "controls/button/toggle_button.h", |
| 111 "controls/button/vector_icon_button.cc", |
| 112 "controls/button/vector_icon_button.h", |
| 113 "controls/button/vector_icon_button_delegate.cc", |
| 114 "controls/button/vector_icon_button_delegate.h", |
| 111 "controls/combobox/combobox.cc", | 115 "controls/combobox/combobox.cc", |
| 112 "controls/combobox/combobox.h", | 116 "controls/combobox/combobox.h", |
| 113 "controls/combobox/combobox_listener.h", | 117 "controls/combobox/combobox_listener.h", |
| 114 "controls/focusable_border.cc", | 118 "controls/focusable_border.cc", |
| 115 "controls/focusable_border.h", | 119 "controls/focusable_border.h", |
| 116 "controls/focusable_rounded_border_mac.cc", | 120 "controls/focusable_rounded_border_mac.cc", |
| 117 "controls/focusable_rounded_border_mac.h", | 121 "controls/focusable_rounded_border_mac.h", |
| 118 "controls/glow_hover_controller.cc", | 122 "controls/glow_hover_controller.cc", |
| 119 "controls/glow_hover_controller.h", | 123 "controls/glow_hover_controller.h", |
| 120 "controls/image_view.cc", | 124 "controls/image_view.cc", |
| (...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 995 "//ui/base:test_support", | 999 "//ui/base:test_support", |
| 996 "//ui/compositor", | 1000 "//ui/compositor", |
| 997 "//ui/events:test_support", | 1001 "//ui/events:test_support", |
| 998 "//ui/gl:test_support", | 1002 "//ui/gl:test_support", |
| 999 "//ui/resources", | 1003 "//ui/resources", |
| 1000 "//ui/resources:ui_test_pak", | 1004 "//ui/resources:ui_test_pak", |
| 1001 "//ui/strings", | 1005 "//ui/strings", |
| 1002 ] | 1006 ] |
| 1003 } | 1007 } |
| 1004 } | 1008 } |
| OLD | NEW |