OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 'controls/separator.cc', | 128 'controls/separator.cc', |
129 'controls/separator.h', | 129 'controls/separator.h', |
130 'controls/single_split_view.cc', | 130 'controls/single_split_view.cc', |
131 'controls/single_split_view.h', | 131 'controls/single_split_view.h', |
132 'controls/tabbed_pane.cc', | 132 'controls/tabbed_pane.cc', |
133 'controls/tabbed_pane.h', | 133 'controls/tabbed_pane.h', |
134 'controls/table/group_table_view.cc', | 134 'controls/table/group_table_view.cc', |
135 'controls/table/group_table_view.h', | 135 'controls/table/group_table_view.h', |
136 'controls/table/table_view.cc', | 136 'controls/table/table_view.cc', |
137 'controls/table/table_view.h', | 137 'controls/table/table_view.h', |
138 'controls/text_field.cc', | 138 'controls/textfield/textfield.cc', |
139 'controls/text_field.h', | 139 'controls/textfield/textfield.h', |
| 140 'controls/textfield/native_textfield_gtk.cc', |
| 141 'controls/textfield/native_textfield_gtk.h', |
| 142 'controls/textfield/native_textfield_win.cc', |
| 143 'controls/textfield/native_textfield_win.h', |
| 144 'controls/textfield/native_textfield_wrapper.h', |
140 'controls/throbber.cc', | 145 'controls/throbber.cc', |
141 'controls/throbber.h', | 146 'controls/throbber.h', |
142 'controls/tree/tree_view.cc', | 147 'controls/tree/tree_view.cc', |
143 'controls/tree/tree_view.h', | 148 'controls/tree/tree_view.h', |
144 'drag_utils.cc', | 149 'drag_utils.cc', |
145 'drag_utils.h', | 150 'drag_utils.h', |
146 'event.cc', | 151 'event.cc', |
147 'event.h', | 152 'event.h', |
148 'event_gtk.cc', | 153 'event_gtk.cc', |
149 'event_win.cc', | 154 'event_win.cc', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 ], | 273 ], |
269 'include_dirs': [ | 274 'include_dirs': [ |
270 # TODO(beng): move wtl to src/third_party | 275 # TODO(beng): move wtl to src/third_party |
271 '../chrome/third_party/wtl/include', | 276 '../chrome/third_party/wtl/include', |
272 ], | 277 ], |
273 }], | 278 }], |
274 ], | 279 ], |
275 }, | 280 }, |
276 ], | 281 ], |
277 } | 282 } |
OLD | NEW |