OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 9 'target_defaults': { |
10 'sources/': [ | 10 'sources/': [ |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 'controls/textfield/gtk_views_entry.h', | 210 'controls/textfield/gtk_views_entry.h', |
211 'controls/textfield/gtk_views_textview.cc', | 211 'controls/textfield/gtk_views_textview.cc', |
212 'controls/textfield/gtk_views_textview.h', | 212 'controls/textfield/gtk_views_textview.h', |
213 'controls/textfield/textfield.cc', | 213 'controls/textfield/textfield.cc', |
214 'controls/textfield/textfield.h', | 214 'controls/textfield/textfield.h', |
215 'controls/textfield/native_textfield_gtk.cc', | 215 'controls/textfield/native_textfield_gtk.cc', |
216 'controls/textfield/native_textfield_gtk.h', | 216 'controls/textfield/native_textfield_gtk.h', |
217 'controls/textfield/native_textfield_win.cc', | 217 'controls/textfield/native_textfield_win.cc', |
218 'controls/textfield/native_textfield_win.h', | 218 'controls/textfield/native_textfield_win.h', |
219 'controls/textfield/native_textfield_wrapper.h', | 219 'controls/textfield/native_textfield_wrapper.h', |
| 220 'controls/textfield/textfield_model.cc', |
| 221 'controls/textfield/textfield_model.h', |
| 222 'controls/textfield/textfield_view.cc', |
| 223 'controls/textfield/textfield_view.h', |
220 'controls/throbber.cc', | 224 'controls/throbber.cc', |
221 'controls/throbber.h', | 225 'controls/throbber.h', |
222 'controls/tree/tree_view.cc', | 226 'controls/tree/tree_view.cc', |
223 'controls/tree/tree_view.h', | 227 'controls/tree/tree_view.h', |
224 'drag_utils.cc', | 228 'drag_utils.cc', |
225 'drag_utils.h', | 229 'drag_utils.h', |
226 'drag_utils_gtk.cc', | 230 'drag_utils_gtk.cc', |
227 'drag_utils_win.cc', | 231 'drag_utils_win.cc', |
228 'event.cc', | 232 'event.cc', |
229 'event.h', | 233 'event.h', |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 ], | 441 ], |
438 }, | 442 }, |
439 ], | 443 ], |
440 } | 444 } |
441 | 445 |
442 # Local Variables: | 446 # Local Variables: |
443 # tab-width:2 | 447 # tab-width:2 |
444 # indent-tabs-mode:nil | 448 # indent-tabs-mode:nil |
445 # End: | 449 # End: |
446 # vim: set expandtab tabstop=2 shiftwidth=2: | 450 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |