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

Side by Side Diff: views/views.gyp

Issue 8598024: Now that we are doing a hard-cut-over to Aura, remove a bunch of *Views based classes that are ob... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
« no previous file with comments | « views/view_wayland.cc ('k') | views/views_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 8
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
11 ['OS=="win"', {'sources/': [ 11 ['OS=="win"', {'sources/': [
12 ['include', '_(win)\\.cc$'], 12 ['include', '_(win)\\.cc$'],
13 ['include', '/win/'], 13 ['include', '/win/'],
14 ['include', '/win_[^/]*\\.cc$'], 14 ['include', '/win_[^/]*\\.cc$'],
15 ]}], 15 ]}],
16 ['touchui==0', { 16 ['touchui==0', {
17 'sources/': [ 17 'sources/': [
18 ['exclude', '_(touch)\\.cc$'], 18 ['exclude', '_(touch)\\.cc$'],
19 ], 19 ],
20 }], 20 }],
21 ['use_aura==1', { 21 ['use_aura==1', {
22 'sources/': [ ['exclude', '_win\\.(h|cc)$'], 22 'sources/': [ ['exclude', '_win\\.(h|cc)$'],
23 ['exclude', '_gtk\\.(h|cc)$'], 23 ['exclude', '_gtk\\.(h|cc)$'],
24 ['exclude', '_x\\.(h|cc)$'] ], 24 ['exclude', '_x\\.(h|cc)$'] ],
25 'dependencies': [ '../ui/aura/aura.gyp:aura', ], 25 'dependencies': [ '../ui/aura/aura.gyp:aura', ],
26 }], 26 }],
27 ['use_wayland == 1', {
28 'dependencies': [
29 '../build/linux/system.gyp:wayland',
30 ],
31 }],
32 ], 27 ],
33 }, 28 },
34 'targets': [ 29 'targets': [
35 { 30 {
36 'target_name': 'views', 31 'target_name': 'views',
37 'type': '<(component)', 32 'type': '<(component)',
38 'dependencies': [ 33 'dependencies': [
39 '../base/base.gyp:base', 34 '../base/base.gyp:base',
40 '../base/base.gyp:base_i18n', 35 '../base/base.gyp:base_i18n',
41 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 36 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'controls/button/radio_button.cc', 72 'controls/button/radio_button.cc',
78 'controls/button/radio_button.h', 73 'controls/button/radio_button.h',
79 'controls/button/text_button.cc', 74 'controls/button/text_button.cc',
80 'controls/button/text_button.h', 75 'controls/button/text_button.h',
81 'controls/combobox/combobox.cc', 76 'controls/combobox/combobox.cc',
82 'controls/combobox/combobox.h', 77 'controls/combobox/combobox.h',
83 'controls/combobox/native_combobox_gtk.cc', 78 'controls/combobox/native_combobox_gtk.cc',
84 'controls/combobox/native_combobox_gtk.h', 79 'controls/combobox/native_combobox_gtk.h',
85 'controls/combobox/native_combobox_views.cc', 80 'controls/combobox/native_combobox_views.cc',
86 'controls/combobox/native_combobox_views.h', 81 'controls/combobox/native_combobox_views.h',
87 'controls/combobox/native_combobox_wayland.cc',
88 'controls/combobox/native_combobox_win.cc', 82 'controls/combobox/native_combobox_win.cc',
89 'controls/combobox/native_combobox_win.h', 83 'controls/combobox/native_combobox_win.h',
90 'controls/combobox/native_combobox_wrapper.h', 84 'controls/combobox/native_combobox_wrapper.h',
91 'controls/focusable_border.cc', 85 'controls/focusable_border.cc',
92 'controls/focusable_border.h', 86 'controls/focusable_border.h',
93 'controls/image_view.cc', 87 'controls/image_view.cc',
94 'controls/image_view.h', 88 'controls/image_view.h',
95 'controls/label.cc', 89 'controls/label.cc',
96 'controls/label.h', 90 'controls/label.h',
97 'controls/link.cc', 91 'controls/link.cc',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 'controls/native_control_win.cc', 154 'controls/native_control_win.cc',
161 'controls/native_control_win.h', 155 'controls/native_control_win.h',
162 'controls/native/native_view_host.cc', 156 'controls/native/native_view_host.cc',
163 'controls/native/native_view_host.h', 157 'controls/native/native_view_host.h',
164 'controls/native/native_view_host_aura.cc', 158 'controls/native/native_view_host_aura.cc',
165 'controls/native/native_view_host_aura.h', 159 'controls/native/native_view_host_aura.h',
166 'controls/native/native_view_host_gtk.cc', 160 'controls/native/native_view_host_gtk.cc',
167 'controls/native/native_view_host_gtk.h', 161 'controls/native/native_view_host_gtk.h',
168 'controls/native/native_view_host_win.cc', 162 'controls/native/native_view_host_win.cc',
169 'controls/native/native_view_host_win.h', 163 'controls/native/native_view_host_win.h',
170 'controls/native/native_view_host_views.cc',
171 'controls/native/native_view_host_views.h',
172 'controls/native/native_view_host_wayland.cc',
173 'controls/native/native_view_host_wrapper.h',
174 'controls/progress_bar.h', 164 'controls/progress_bar.h',
175 'controls/progress_bar.cc', 165 'controls/progress_bar.cc',
176 'controls/resize_area.cc', 166 'controls/resize_area.cc',
177 'controls/resize_area.h', 167 'controls/resize_area.h',
178 'controls/resize_area_delegate.h', 168 'controls/resize_area_delegate.h',
179 'controls/scroll_view.cc', 169 'controls/scroll_view.cc',
180 'controls/scroll_view.h', 170 'controls/scroll_view.h',
181 'controls/scrollbar/base_scroll_bar.cc', 171 'controls/scrollbar/base_scroll_bar.cc',
182 'controls/scrollbar/base_scroll_bar.h', 172 'controls/scrollbar/base_scroll_bar.h',
183 'controls/scrollbar/base_scroll_bar_button.cc', 173 'controls/scrollbar/base_scroll_bar_button.cc',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 'controls/textfield/gtk_views_entry.h', 216 'controls/textfield/gtk_views_entry.h',
227 'controls/textfield/gtk_views_textview.cc', 217 'controls/textfield/gtk_views_textview.cc',
228 'controls/textfield/gtk_views_textview.h', 218 'controls/textfield/gtk_views_textview.h',
229 'controls/textfield/textfield.cc', 219 'controls/textfield/textfield.cc',
230 'controls/textfield/textfield.h', 220 'controls/textfield/textfield.h',
231 'controls/textfield/textfield_controller.h', 221 'controls/textfield/textfield_controller.h',
232 'controls/textfield/textfield_views_model.cc', 222 'controls/textfield/textfield_views_model.cc',
233 'controls/textfield/textfield_views_model.h', 223 'controls/textfield/textfield_views_model.h',
234 'controls/textfield/native_textfield_gtk.cc', 224 'controls/textfield/native_textfield_gtk.cc',
235 'controls/textfield/native_textfield_gtk.h', 225 'controls/textfield/native_textfield_gtk.h',
236 'controls/textfield/native_textfield_wayland.cc',
237 'controls/textfield/native_textfield_win.cc', 226 'controls/textfield/native_textfield_win.cc',
238 'controls/textfield/native_textfield_win.h', 227 'controls/textfield/native_textfield_win.h',
239 'controls/textfield/native_textfield_wrapper.h', 228 'controls/textfield/native_textfield_wrapper.h',
240 'controls/textfield/native_textfield_views.cc', 229 'controls/textfield/native_textfield_views.cc',
241 'controls/textfield/native_textfield_views.h', 230 'controls/textfield/native_textfield_views.h',
242 'controls/throbber.cc', 231 'controls/throbber.cc',
243 'controls/throbber.h', 232 'controls/throbber.h',
244 'controls/tree/tree_view.cc', 233 'controls/tree/tree_view.cc',
245 'controls/tree/tree_view.h', 234 'controls/tree/tree_view.h',
246 #'debug_utils.cc', 235 #'debug_utils.cc',
247 #'debug_utils.h', 236 #'debug_utils.h',
248 'drag_controller.h', 237 'drag_controller.h',
249 'drag_utils.cc', 238 'drag_utils.cc',
250 'drag_utils.h', 239 'drag_utils.h',
251 'drag_utils_aura.cc', 240 'drag_utils_aura.cc',
252 'drag_utils_gtk.cc', 241 'drag_utils_gtk.cc',
253 'drag_utils_win.cc', 242 'drag_utils_win.cc',
254 'metrics.cc', 243 'metrics.cc',
255 'metrics.h', 244 'metrics.h',
256 'metrics_aura.cc', 245 'metrics_aura.cc',
257 'metrics_gtk.cc', 246 'metrics_gtk.cc',
258 'metrics_wayland.cc',
259 'metrics_win.cc', 247 'metrics_win.cc',
260 'mouse_watcher.cc', 248 'mouse_watcher.cc',
261 'mouse_watcher.h', 249 'mouse_watcher.h',
262 'native_theme_delegate.h', 250 'native_theme_delegate.h',
263 'native_theme_painter.cc', 251 'native_theme_painter.cc',
264 'native_theme_painter.h', 252 'native_theme_painter.h',
265 'paint_lock.cc', 253 'paint_lock.cc',
266 'paint_lock.h', 254 'paint_lock.h',
267 'painter.cc', 255 'painter.cc',
268 'painter.h', 256 'painter.h',
269 'repeat_controller.cc', 257 'repeat_controller.cc',
270 'repeat_controller.h', 258 'repeat_controller.h',
271 'view.cc', 259 'view.cc',
272 'view.h', 260 'view.h',
273 'view_aura.cc', 261 'view_aura.cc',
274 'view_constants.cc', 262 'view_constants.cc',
275 'view_constants.h', 263 'view_constants.h',
276 'view_gtk.cc', 264 'view_gtk.cc',
277 'view_text_utils.cc', 265 'view_text_utils.cc',
278 'view_text_utils.h', 266 'view_text_utils.h',
279 'view_wayland.cc',
280 'view_win.cc', 267 'view_win.cc',
281 'views_delegate.h', 268 'views_delegate.h',
282 'widget/aero_tooltip_manager.cc', 269 'widget/aero_tooltip_manager.cc',
283 'widget/aero_tooltip_manager.h', 270 'widget/aero_tooltip_manager.h',
284 'widget/child_window_message_processor.cc', 271 'widget/child_window_message_processor.cc',
285 'widget/child_window_message_processor.h', 272 'widget/child_window_message_processor.h',
286 'widget/default_theme_provider.cc', 273 'widget/default_theme_provider.cc',
287 'widget/default_theme_provider.h', 274 'widget/default_theme_provider.h',
288 'widget/drop_helper.cc', 275 'widget/drop_helper.cc',
289 'widget/drop_helper.h', 276 'widget/drop_helper.h',
(...skipping 17 matching lines...) Expand all
307 'widget/tooltip_manager.h', 294 'widget/tooltip_manager.h',
308 'widget/monitor_win.cc', 295 'widget/monitor_win.cc',
309 'widget/monitor_win.h', 296 'widget/monitor_win.h',
310 'widget/native_widget.h', 297 'widget/native_widget.h',
311 'widget/native_widget_aura.cc', 298 'widget/native_widget_aura.cc',
312 'widget/native_widget_aura.h', 299 'widget/native_widget_aura.h',
313 'widget/native_widget_delegate.h', 300 'widget/native_widget_delegate.h',
314 'widget/native_widget_private.h', 301 'widget/native_widget_private.h',
315 'widget/native_widget_gtk.cc', 302 'widget/native_widget_gtk.cc',
316 'widget/native_widget_gtk.h', 303 'widget/native_widget_gtk.h',
317 'widget/native_widget_wayland.cc',
318 'widget/native_widget_wayland.h',
319 'widget/native_widget_view.cc',
320 'widget/native_widget_view.h',
321 'widget/native_widget_views.cc',
322 'widget/native_widget_views.h',
323 'widget/native_widget_win.cc', 304 'widget/native_widget_win.cc',
324 'widget/native_widget_win.h', 305 'widget/native_widget_win.h',
325 'widget/widget.cc', 306 'widget/widget.cc',
326 'widget/widget.h', 307 'widget/widget.h',
327 'widget/widget_delegate.cc', 308 'widget/widget_delegate.cc',
328 'widget/widget_delegate.h', 309 'widget/widget_delegate.h',
329 'widget/window_manager.cc', 310 'widget/window_manager.cc',
330 'widget/window_manager.h', 311 'widget/window_manager.h',
331 '../ui/views/accessibility/native_view_accessibility_win.cc', 312 '../ui/views/accessibility/native_view_accessibility_win.cc',
332 '../ui/views/accessibility/native_view_accessibility_win.h', 313 '../ui/views/accessibility/native_view_accessibility_win.h',
333 '../ui/views/animation/bounds_animator.cc', 314 '../ui/views/animation/bounds_animator.cc',
334 '../ui/views/animation/bounds_animator.h', 315 '../ui/views/animation/bounds_animator.h',
335 '../ui/views/bubble/border_contents_view.cc', 316 '../ui/views/bubble/border_contents_view.cc',
336 '../ui/views/bubble/border_contents_view.h', 317 '../ui/views/bubble/border_contents_view.h',
337 '../ui/views/bubble/bubble_border.cc', 318 '../ui/views/bubble/bubble_border.cc',
338 '../ui/views/bubble/bubble_border.h', 319 '../ui/views/bubble/bubble_border.h',
339 '../ui/views/bubble/bubble_delegate.cc', 320 '../ui/views/bubble/bubble_delegate.cc',
340 '../ui/views/bubble/bubble_delegate.h', 321 '../ui/views/bubble/bubble_delegate.h',
341 '../ui/views/bubble/bubble_frame_view.cc', 322 '../ui/views/bubble/bubble_frame_view.cc',
342 '../ui/views/bubble/bubble_frame_view.h', 323 '../ui/views/bubble/bubble_frame_view.h',
343 '../ui/views/events/event.cc', 324 '../ui/views/events/event.cc',
344 '../ui/views/events/event.h', 325 '../ui/views/events/event.h',
345 '../ui/views/events/event_aura.cc', 326 '../ui/views/events/event_aura.cc',
346 '../ui/views/events/event_gtk.cc', 327 '../ui/views/events/event_gtk.cc',
347 '../ui/views/events/event_wayland.cc',
348 '../ui/views/events/event_win.cc', 328 '../ui/views/events/event_win.cc',
349 '../ui/views/events/event_x.cc', 329 '../ui/views/events/event_x.cc',
350 '../ui/views/focus/accelerator_handler.h', 330 '../ui/views/focus/accelerator_handler.h',
351 '../ui/views/focus/accelerator_handler_aura.cc', 331 '../ui/views/focus/accelerator_handler_aura.cc',
352 '../ui/views/focus/accelerator_handler_gtk.cc', 332 '../ui/views/focus/accelerator_handler_gtk.cc',
353 '../ui/views/focus/accelerator_handler_touch.cc',
354 '../ui/views/focus/accelerator_handler_wayland.cc',
355 '../ui/views/focus/accelerator_handler_win.cc', 333 '../ui/views/focus/accelerator_handler_win.cc',
356 '../ui/views/focus/external_focus_tracker.cc', 334 '../ui/views/focus/external_focus_tracker.cc',
357 '../ui/views/focus/external_focus_tracker.h', 335 '../ui/views/focus/external_focus_tracker.h',
358 '../ui/views/focus/focus_manager.cc', 336 '../ui/views/focus/focus_manager.cc',
359 '../ui/views/focus/focus_manager.h', 337 '../ui/views/focus/focus_manager.h',
360 '../ui/views/focus/focus_manager_factory.cc', 338 '../ui/views/focus/focus_manager_factory.cc',
361 '../ui/views/focus/focus_manager_factory.h', 339 '../ui/views/focus/focus_manager_factory.h',
362 '../ui/views/focus/focus_search.cc', 340 '../ui/views/focus/focus_search.cc',
363 '../ui/views/focus/focus_search.h', 341 '../ui/views/focus/focus_search.h',
364 '../ui/views/focus/view_storage.cc', 342 '../ui/views/focus/view_storage.cc',
365 '../ui/views/focus/view_storage.h', 343 '../ui/views/focus/view_storage.h',
366 '../ui/views/focus/widget_focus_manager.cc', 344 '../ui/views/focus/widget_focus_manager.cc',
367 '../ui/views/focus/widget_focus_manager.h', 345 '../ui/views/focus/widget_focus_manager.h',
368 '../ui/views/ime/input_method_base.cc', 346 '../ui/views/ime/input_method_base.cc',
369 '../ui/views/ime/input_method_base.h', 347 '../ui/views/ime/input_method_base.h',
370 '../ui/views/ime/input_method_delegate.h', 348 '../ui/views/ime/input_method_delegate.h',
371 '../ui/views/ime/input_method_gtk.cc', 349 '../ui/views/ime/input_method_gtk.cc',
372 '../ui/views/ime/input_method_gtk.h', 350 '../ui/views/ime/input_method_gtk.h',
373 '../ui/views/ime/input_method.h', 351 '../ui/views/ime/input_method.h',
374 '../ui/views/ime/input_method_ibus.cc', 352 '../ui/views/ime/input_method_ibus.cc',
375 '../ui/views/ime/input_method_ibus.h', 353 '../ui/views/ime/input_method_ibus.h',
376 '../ui/views/ime/input_method_wayland.cc',
377 '../ui/views/ime/input_method_wayland.h',
378 '../ui/views/ime/input_method_win.cc', 354 '../ui/views/ime/input_method_win.cc',
379 '../ui/views/ime/input_method_win.h', 355 '../ui/views/ime/input_method_win.h',
380 '../ui/views/ime/mock_input_method.cc', 356 '../ui/views/ime/mock_input_method.cc',
381 '../ui/views/ime/mock_input_method.h', 357 '../ui/views/ime/mock_input_method.h',
382 '../ui/views/ime/text_input_type_tracker.cc', 358 '../ui/views/ime/text_input_type_tracker.cc',
383 '../ui/views/ime/text_input_type_tracker.h', 359 '../ui/views/ime/text_input_type_tracker.h',
384 '../ui/views/layout/box_layout.cc', 360 '../ui/views/layout/box_layout.cc',
385 '../ui/views/layout/box_layout.h', 361 '../ui/views/layout/box_layout.h',
386 '../ui/views/layout/fill_layout.cc', 362 '../ui/views/layout/fill_layout.cc',
387 '../ui/views/layout/fill_layout.h', 363 '../ui/views/layout/fill_layout.h',
(...skipping 21 matching lines...) Expand all
409 '../ui/views/window/non_client_view.cc', 385 '../ui/views/window/non_client_view.cc',
410 '../ui/views/window/non_client_view.h', 386 '../ui/views/window/non_client_view.h',
411 '../ui/views/window/window_resources.h', 387 '../ui/views/window/window_resources.h',
412 '../ui/views/window/window_shape.cc', 388 '../ui/views/window/window_shape.cc',
413 '../ui/views/window/window_shape.h', 389 '../ui/views/window/window_shape.h',
414 ], 390 ],
415 'include_dirs': [ 391 'include_dirs': [
416 '../third_party/wtl/include', 392 '../third_party/wtl/include',
417 ], 393 ],
418 'conditions': [ 394 'conditions': [
419 ['use_wayland == 1', {
420 'dependencies': [
421 '../ui/wayland/wayland.gyp:wayland',
422 ],
423 'sources/': [
424 ['exclude', '_(gtk|x)\\.cc$'],
425 ['exclude', '/(gtk|x)_[^/]*\\.cc$'],
426 ['exclude', '../ui/views/focus/accelerator_handler_touch.cc'],
427 ['include', 'controls/menu/native_menu_views.cc'],
428 ['include', 'controls/menu/native_menu_views.h'],
429 ['include', 'drag_utils_gtk.cc'],
430 ['include', 'widget/tooltip_manager_views.cc'],
431 ],
432 }],
433 ['use_aura==1', { 395 ['use_aura==1', {
434 'sources/': [ 396 'sources/': [
435 ['exclude', '_(gtk|x)\\.cc$'], 397 ['exclude', '_(gtk|x)\\.cc$'],
436 ['exclude', '/(gtk|x)_[^/]*\\.cc$'], 398 ['exclude', '/(gtk|x)_[^/]*\\.cc$'],
437 ['exclude', 'controls/menu/menu_2.*'], 399 ['exclude', 'controls/menu/menu_2.*'],
438 ], 400 ],
439 'sources!': [ 401 'sources!': [
440 '../ui/views/focus/accelerator_handler_touch.cc',
441 'controls/menu/menu_config_linux.cc', 402 'controls/menu/menu_config_linux.cc',
442 'controls/menu/menu_item_view_linux.cc', 403 'controls/menu/menu_item_view_linux.cc',
443 'controls/menu/menu_separator_linux.cc', 404 'controls/menu/menu_separator_linux.cc',
444 'controls/native_control.cc', 405 'controls/native_control.cc',
445 'controls/native_control.h', 406 'controls/native_control.h',
446 'controls/scrollbar/bitmap_scroll_bar.cc', 407 'controls/scrollbar/bitmap_scroll_bar.cc',
447 'controls/scrollbar/bitmap_scroll_bar.h', 408 'controls/scrollbar/bitmap_scroll_bar.h',
448 'controls/tabbed_pane/tabbed_pane.cc', 409 'controls/tabbed_pane/tabbed_pane.cc',
449 'controls/tabbed_pane/tabbed_pane.h', 410 'controls/tabbed_pane/tabbed_pane.h',
450 'controls/table/group_table_view.cc', 411 'controls/table/group_table_view.cc',
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 '../ui/views/examples/link_example.cc', 656 '../ui/views/examples/link_example.cc',
696 '../ui/views/examples/link_example.h', 657 '../ui/views/examples/link_example.h',
697 '../ui/views/examples/message_box_example.cc', 658 '../ui/views/examples/message_box_example.cc',
698 '../ui/views/examples/message_box_example.h', 659 '../ui/views/examples/message_box_example.h',
699 '../ui/views/examples/menu_example.cc', 660 '../ui/views/examples/menu_example.cc',
700 '../ui/views/examples/menu_example.h', 661 '../ui/views/examples/menu_example.h',
701 '../ui/views/examples/native_theme_button_example.cc', 662 '../ui/views/examples/native_theme_button_example.cc',
702 '../ui/views/examples/native_theme_button_example.h', 663 '../ui/views/examples/native_theme_button_example.h',
703 '../ui/views/examples/native_theme_checkbox_example.cc', 664 '../ui/views/examples/native_theme_checkbox_example.cc',
704 '../ui/views/examples/native_theme_checkbox_example.h', 665 '../ui/views/examples/native_theme_checkbox_example.h',
705 '../ui/views/examples/native_widget_views_example.cc',
706 '../ui/views/examples/native_widget_views_example.h',
707 '../ui/views/examples/progress_bar_example.cc', 666 '../ui/views/examples/progress_bar_example.cc',
708 '../ui/views/examples/progress_bar_example.h', 667 '../ui/views/examples/progress_bar_example.h',
709 '../ui/views/examples/radio_button_example.cc', 668 '../ui/views/examples/radio_button_example.cc',
710 '../ui/views/examples/radio_button_example.h', 669 '../ui/views/examples/radio_button_example.h',
711 '../ui/views/examples/scroll_view_example.cc', 670 '../ui/views/examples/scroll_view_example.cc',
712 '../ui/views/examples/scroll_view_example.h', 671 '../ui/views/examples/scroll_view_example.h',
713 '../ui/views/examples/single_split_view_example.cc', 672 '../ui/views/examples/single_split_view_example.cc',
714 '../ui/views/examples/single_split_view_example.h', 673 '../ui/views/examples/single_split_view_example.h',
715 '../ui/views/examples/tabbed_pane_example.cc', 674 '../ui/views/examples/tabbed_pane_example.cc',
716 '../ui/views/examples/tabbed_pane_example.h', 675 '../ui/views/examples/tabbed_pane_example.h',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 'AdditionalManifestFiles': '..\\ui\\views\\examples\\views_example s.exe.manifest', 718 'AdditionalManifestFiles': '..\\ui\\views\\examples\\views_example s.exe.manifest',
760 }, 719 },
761 }, 720 },
762 'sources': [ 721 'sources': [
763 '../ui/views/examples/table_example.cc', 722 '../ui/views/examples/table_example.cc',
764 '../ui/views/examples/table_example.h', 723 '../ui/views/examples/table_example.h',
765 ], 724 ],
766 }], 725 }],
767 ], 726 ],
768 }, 727 },
769 {
770 'target_name': 'views_desktop_lib',
771 'type': 'static_library',
772 'dependencies': [
773 '../base/base.gyp:base',
774 '../chrome/chrome_resources.gyp:packed_resources',
775 '../skia/skia.gyp:skia',
776 '../third_party/icu/icu.gyp:icui18n',
777 '../third_party/icu/icu.gyp:icuuc',
778 '../ui/gfx/compositor/compositor.gyp:compositor',
779 '../ui/ui.gyp:gfx_resources',
780 '../ui/ui.gyp:ui',
781 '../ui/ui.gyp:ui_resources',
782 'views',
783 ],
784 'include_dirs': [
785 '..',
786 ],
787 'sources': [
788 '../ui/views/desktop/desktop_background.cc',
789 '../ui/views/desktop/desktop_background.h',
790 '../ui/views/desktop/desktop_window_manager.cc',
791 '../ui/views/desktop/desktop_window_manager.h',
792 '../ui/views/desktop/desktop_window_view.cc',
793 '../ui/views/desktop/desktop_window_view.h',
794 ],
795 'conditions': [
796 ['toolkit_uses_gtk == 1', {
797 'dependencies': [
798 '../build/linux/system.gyp:gtk',
799 ],
800 'conditions': [
801 ['linux_use_tcmalloc==1', {
802 'dependencies': [
803 '../base/allocator/allocator.gyp:allocator',
804 ],
805 }],
806 ],
807 },
808 ],
809 ['OS=="win"', {
810 'link_settings': {
811 'libraries': [
812 '-limm32.lib',
813 '-loleacc.lib',
814 ]
815 },
816 'include_dirs': [
817 '../third_party/wtl/include',
818 ],
819 }],
820 ],
821 },
822 {
823 'target_name': 'views_desktop',
824 'type': 'executable',
825 'dependencies': [
826 '../base/base.gyp:base',
827 '../base/base.gyp:base_i18n',
828 '../chrome/chrome_resources.gyp:packed_resources',
829 '../skia/skia.gyp:skia',
830 '../third_party/icu/icu.gyp:icui18n',
831 '../third_party/icu/icu.gyp:icuuc',
832 '../ui/ui.gyp:gfx_resources',
833 '../ui/ui.gyp:ui',
834 '../ui/ui.gyp:ui_resources',
835 '../ui/ui.gyp:ui_resources_standard',
836 '../ui/gfx/compositor/compositor.gyp:compositor',
837 'views',
838 'views_desktop_lib',
839 ],
840 'include_dirs': [
841 '..',
842 ],
843 'sources': [
844 '../ui/views/desktop/desktop_main.cc',
845 '../ui/views/desktop/desktop_views_delegate.cc',
846 '../ui/views/desktop/desktop_views_delegate.h',
847 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
848 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
849 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc',
850 ],
851 'conditions': [
852 ['toolkit_uses_gtk == 1', {
853 'dependencies': [
854 '../build/linux/system.gyp:gtk',
855 ],
856 },
857 ],
858 ['use_glib == 1', {
859 'dependencies': [
860 '../build/linux/system.gyp:glib',
861 ],
862 'conditions': [
863 ['linux_use_tcmalloc==1', {
864 'dependencies': [
865 '../base/allocator/allocator.gyp:allocator',
866 ],
867 }],
868 ],
869 }],
870 ['OS=="win"', {
871 'link_settings': {
872 'libraries': [
873 '-limm32.lib',
874 '-loleacc.lib',
875 ]
876 },
877 'include_dirs': [
878 '../third_party/wtl/include',
879 ],
880 }],
881 ],
882 },
883 ], 728 ],
884 'conditions': [
885 ['use_aura==1', {
886 'targets': [
887 {
888 'target_name': 'views_aura_desktop',
889 'type': 'executable',
890 'dependencies': [
891 '../base/base.gyp:base',
892 '../base/base.gyp:base_i18n',
893 '../chrome/chrome_resources.gyp:packed_resources',
894 '../skia/skia.gyp:skia',
895 '../third_party/icu/icu.gyp:icui18n',
896 '../third_party/icu/icu.gyp:icuuc',
897 '../ui/aura/aura.gyp:aura',
898 '../ui/ui.gyp:gfx_resources',
899 '../ui/ui.gyp:ui',
900 '../ui/ui.gyp:ui_resources',
901 '../ui/ui.gyp:ui_resources_standard',
902 'views',
903 ],
904 'include_dirs': [
905 '..',
906 ],
907 'sources': [
908 '../ui/views/aura_desktop/aura_desktop_main.cc',
909 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
910 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
911 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_st andard.rc',
912 ],
913 'conditions': [
914 ['OS=="win"', {
915 'link_settings': {
916 'libraries': [
917 '-limm32.lib',
918 '-loleacc.lib',
919 ]
920 },
921 'include_dirs': [
922 '../third_party/wtl/include',
923 ],
924 }],
925 ],
926 },
927 ],
928 }],
929 ],
930 } 729 }
OLDNEW
« no previous file with comments | « views/view_wayland.cc ('k') | views/views_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698