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

Side by Side Diff: views/views.gyp

Issue 7669028: Adding a Views scrollbar implementation. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Refactored the bitmap code to be shared with the native_scroll_bar_views Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 'controls/native/native_view_host_win.h', 155 'controls/native/native_view_host_win.h',
156 'controls/native/native_view_host_views.cc', 156 'controls/native/native_view_host_views.cc',
157 'controls/native/native_view_host_views.h', 157 'controls/native/native_view_host_views.h',
158 'controls/native/native_view_host_wrapper.h', 158 'controls/native/native_view_host_wrapper.h',
159 'controls/progress_bar.h', 159 'controls/progress_bar.h',
160 'controls/progress_bar.cc', 160 'controls/progress_bar.cc',
161 'controls/resize_area.cc', 161 'controls/resize_area.cc',
162 'controls/resize_area.h', 162 'controls/resize_area.h',
163 'controls/scroll_view.cc', 163 'controls/scroll_view.cc',
164 'controls/scroll_view.h', 164 'controls/scroll_view.h',
165 'controls/scrollbar/base_scroll_bar.cc',
166 'controls/scrollbar/base_scroll_bar.h',
167 'controls/scrollbar/base_scroll_bar_button.cc',
168 'controls/scrollbar/base_scroll_bar_button.h',
169 'controls/scrollbar/base_scroll_bar_thumb.cc',
170 'controls/scrollbar/base_scroll_bar_thumb.h',
165 'controls/scrollbar/bitmap_scroll_bar.cc', 171 'controls/scrollbar/bitmap_scroll_bar.cc',
166 'controls/scrollbar/bitmap_scroll_bar.h', 172 'controls/scrollbar/bitmap_scroll_bar.h',
167 'controls/scrollbar/native_scroll_bar_gtk.cc', 173 'controls/scrollbar/native_scroll_bar_gtk.cc',
168 'controls/scrollbar/native_scroll_bar_gtk.h', 174 'controls/scrollbar/native_scroll_bar_gtk.h',
175 'controls/scrollbar/native_scroll_bar_views.cc',
176 'controls/scrollbar/native_scroll_bar_views.h',
169 'controls/scrollbar/native_scroll_bar_win.cc', 177 'controls/scrollbar/native_scroll_bar_win.cc',
170 'controls/scrollbar/native_scroll_bar_win.h', 178 'controls/scrollbar/native_scroll_bar_win.h',
171 'controls/scrollbar/native_scroll_bar_wrapper.h', 179 'controls/scrollbar/native_scroll_bar_wrapper.h',
172 'controls/scrollbar/native_scroll_bar.cc', 180 'controls/scrollbar/native_scroll_bar.cc',
173 'controls/scrollbar/native_scroll_bar.h', 181 'controls/scrollbar/native_scroll_bar.h',
174 'controls/scrollbar/scroll_bar.cc', 182 'controls/scrollbar/scroll_bar.cc',
175 'controls/scrollbar/scroll_bar.h', 183 'controls/scrollbar/scroll_bar.h',
176 'controls/separator.cc', 184 'controls/separator.cc',
177 'controls/separator.h', 185 'controls/separator.h',
178 'controls/single_split_view.cc', 186 'controls/single_split_view.cc',
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 'include_dirs': [ 732 'include_dirs': [
725 '<(DEPTH)/third_party/wtl/include', 733 '<(DEPTH)/third_party/wtl/include',
726 ], 734 ],
727 }], 735 }],
728 ], 736 ],
729 }, 737 },
730 738
731 739
732 ], 740 ],
733 } 741 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698