diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 00:26:44 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-12 00:26:44 +0000 |
commit | d0545b7f65cfee49e1bdfc10d256886c1fd89818 (patch) | |
tree | 65b8d32b4937e379fff7f522937095bbdf9f3654 /views/views.gyp | |
parent | cdcb3bd006d0823d45187f2c7fe3c3adc0ebb031 (diff) | |
download | chromium_src-d0545b7f65cfee49e1bdfc10d256886c1fd89818.zip chromium_src-d0545b7f65cfee49e1bdfc10d256886c1fd89818.tar.gz chromium_src-d0545b7f65cfee49e1bdfc10d256886c1fd89818.tar.bz2 |
Refactoring of the TableView so it uses NativeViewControl.
At this point it does not support grouping or sorting.
Mostly refactoring things from TableView to TableView2 and NativeTableWin.
BUG=None
TEST=Unit-tests and view examples for now.
R=sky
Review URL: http://codereview.chromium.org/387021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31741 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/views.gyp')
-rw-r--r-- | views/views.gyp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/views/views.gyp b/views/views.gyp index 4e86d4d..60d89f6 100644 --- a/views/views.gyp +++ b/views/views.gyp @@ -184,10 +184,15 @@ 'controls/tabbed_pane/native_tabbed_pane_win.cc', 'controls/tabbed_pane/native_tabbed_pane_win.h', 'controls/tabbed_pane/native_tabbed_pane_wrapper.h', + 'controls/table/native_table_wrapper.h', + 'controls/table/native_table_win.cc', + 'controls/table/native_table_win.h', 'controls/table/group_table_view.cc', 'controls/table/group_table_view.h', 'controls/table/table_view.cc', 'controls/table/table_view.h', + 'controls/table/table_view2.cc', + 'controls/table/table_view2.h', 'controls/table/table_view_observer.h', 'controls/textfield/textfield.cc', 'controls/textfield/textfield.h', @@ -344,6 +349,8 @@ 'dependencies': [ '../base/base.gyp:base', '../skia/skia.gyp:skia', + '../third_party/icu/icu.gyp:icui18n', + '../third_party/icu/icu.gyp:icuuc', 'views', ], 'include_dirs': [ |