| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 'controls/textfield/native_textfield_gtk.h', | 141 'controls/textfield/native_textfield_gtk.h', |
| 142 'controls/textfield/native_textfield_win.cc', | 142 'controls/textfield/native_textfield_win.cc', |
| 143 'controls/textfield/native_textfield_win.h', | 143 'controls/textfield/native_textfield_win.h', |
| 144 'controls/textfield/native_textfield_wrapper.h', | 144 'controls/textfield/native_textfield_wrapper.h', |
| 145 'controls/throbber.cc', | 145 'controls/throbber.cc', |
| 146 'controls/throbber.h', | 146 'controls/throbber.h', |
| 147 'controls/tree/tree_view.cc', | 147 'controls/tree/tree_view.cc', |
| 148 'controls/tree/tree_view.h', | 148 'controls/tree/tree_view.h', |
| 149 'drag_utils.cc', | 149 'drag_utils.cc', |
| 150 'drag_utils.h', | 150 'drag_utils.h', |
| 151 'drag_utils_gtk.cc', |
| 152 'drag_utils_win.cc', |
| 151 'event.cc', | 153 'event.cc', |
| 152 'event.h', | 154 'event.h', |
| 153 'event_gtk.cc', | 155 'event_gtk.cc', |
| 154 'event_win.cc', | 156 'event_win.cc', |
| 155 'fill_layout.cc', | 157 'fill_layout.cc', |
| 156 'fill_layout.h', | 158 'fill_layout.h', |
| 157 'focus/external_focus_tracker.cc', | 159 'focus/external_focus_tracker.cc', |
| 158 'focus/external_focus_tracker.h', | 160 'focus/external_focus_tracker.h', |
| 159 'focus/focus_manager.cc', | 161 'focus/focus_manager.cc', |
| 160 'focus/focus_manager.h', | 162 'focus/focus_manager.h', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 'controls/scrollbar/native_scroll_bar.cc', | 248 'controls/scrollbar/native_scroll_bar.cc', |
| 247 'controls/button/radio_button.cc', | 249 'controls/button/radio_button.cc', |
| 248 'controls/separator.cc', | 250 'controls/separator.cc', |
| 249 'controls/single_split_view.cc', | 251 'controls/single_split_view.cc', |
| 250 'controls/tabbed_pane.cc', | 252 'controls/tabbed_pane.cc', |
| 251 'controls/table/table_view.cc', | 253 'controls/table/table_view.cc', |
| 252 'controls/table/group_table_view.cc', | 254 'controls/table/group_table_view.cc', |
| 253 'controls/textfield/textfield.cc', | 255 'controls/textfield/textfield.cc', |
| 254 'controls/text_field.cc', | 256 'controls/text_field.cc', |
| 255 'controls/tree/tree_view.cc', | 257 'controls/tree/tree_view.cc', |
| 256 'drag_utils.cc', | |
| 257 'drag_utils.h', | |
| 258 'event_win.cc', | 258 'event_win.cc', |
| 259 'resize_corner.cc', | 259 'resize_corner.cc', |
| 260 'widget/accelerator_handler.cc', | 260 'widget/accelerator_handler.cc', |
| 261 'widget/aero_tooltip_manager.cc', | 261 'widget/aero_tooltip_manager.cc', |
| 262 'widget/root_view_drop_target.cc', | 262 'widget/root_view_drop_target.cc', |
| 263 'widget/tooltip_manager.cc', | 263 'widget/tooltip_manager.cc', |
| 264 'window/dialog_client_view.cc', | 264 'window/dialog_client_view.cc', |
| 265 'window/hit_test.cc', | 265 'window/hit_test.cc', |
| 266 'window/native_frame_view.cc', | 266 'window/native_frame_view.cc', |
| 267 'widget/widget_win.cc', | 267 'widget/widget_win.cc', |
| 268 ], | 268 ], |
| 269 }], | 269 }], |
| 270 ['OS=="win"', { | 270 ['OS=="win"', { |
| 271 'defines': [ | 271 'defines': [ |
| 272 '__STD_C', | 272 '__STD_C', |
| 273 '_CRT_SECURE_NO_DEPRECATE', | 273 '_CRT_SECURE_NO_DEPRECATE', |
| 274 '_SCL_SECURE_NO_DEPRECATE', | 274 '_SCL_SECURE_NO_DEPRECATE', |
| 275 ], | 275 ], |
| 276 'include_dirs': [ | 276 'include_dirs': [ |
| 277 # TODO(beng): move wtl to src/third_party | 277 # TODO(beng): move wtl to src/third_party |
| 278 '../chrome/third_party/wtl/include', | 278 '../chrome/third_party/wtl/include', |
| 279 ], | 279 ], |
| 280 }], | 280 }], |
| 281 ], | 281 ], |
| 282 }, | 282 }, |
| 283 ], | 283 ], |
| 284 } | 284 } |
| OLD | NEW |