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

Side by Side Diff: views/views.gyp

Issue 7741027: Create a new views_aura_desktop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months 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_aura.cc ('k') | views/widget/native_widget_aura.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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 'drag_utils_win.cc', 235 'drag_utils_win.cc',
236 'events/event.cc', 236 'events/event.cc',
237 'events/event.h', 237 'events/event.h',
238 'events/event_aura.cc', 238 'events/event_aura.cc',
239 'events/event_gtk.cc', 239 'events/event_gtk.cc',
240 'events/event_win.cc', 240 'events/event_win.cc',
241 'events/event_utils_win.cc', 241 'events/event_utils_win.cc',
242 'events/event_utils_win.h', 242 'events/event_utils_win.h',
243 'events/event_x.cc', 243 'events/event_x.cc',
244 'focus/accelerator_handler.h', 244 'focus/accelerator_handler.h',
245 'focus/accelerator_handler_aura.cc',
245 'focus/accelerator_handler_gtk.cc', 246 'focus/accelerator_handler_gtk.cc',
246 'focus/accelerator_handler_touch.cc', 247 'focus/accelerator_handler_touch.cc',
247 'focus/accelerator_handler_win.cc', 248 'focus/accelerator_handler_win.cc',
248 'focus/external_focus_tracker.cc', 249 'focus/external_focus_tracker.cc',
249 'focus/external_focus_tracker.h', 250 'focus/external_focus_tracker.h',
250 'focus/focus_manager.cc', 251 'focus/focus_manager.cc',
251 'focus/focus_manager.h', 252 'focus/focus_manager.h',
252 'focus/focus_manager_factory.cc', 253 'focus/focus_manager_factory.cc',
253 'focus/focus_manager_factory.h', 254 'focus/focus_manager_factory.h',
254 'focus/focus_search.cc', 255 'focus/focus_search.cc',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 'touchui/gesture_manager.cc', 304 'touchui/gesture_manager.cc',
304 'touchui/gesture_manager.h', 305 'touchui/gesture_manager.h',
305 'touchui/touch_factory.cc', 306 'touchui/touch_factory.cc',
306 'touchui/touch_factory.h', 307 'touchui/touch_factory.h',
307 'touchui/touch_selection_controller.cc', 308 'touchui/touch_selection_controller.cc',
308 'touchui/touch_selection_controller.h', 309 'touchui/touch_selection_controller.h',
309 'touchui/touch_selection_controller_impl.cc', 310 'touchui/touch_selection_controller_impl.cc',
310 'touchui/touch_selection_controller_impl.h', 311 'touchui/touch_selection_controller_impl.h',
311 'view.cc', 312 'view.cc',
312 'view.h', 313 'view.h',
314 'view_aura.cc',
313 'view_constants.cc', 315 'view_constants.cc',
314 'view_constants.h', 316 'view_constants.h',
315 'view_gtk.cc', 317 'view_gtk.cc',
316 'view_text_utils.cc', 318 'view_text_utils.cc',
317 'view_text_utils.h', 319 'view_text_utils.h',
318 'view_win.cc', 320 'view_win.cc',
319 'views_delegate.h', 321 'views_delegate.h',
320 'widget/aero_tooltip_manager.cc', 322 'widget/aero_tooltip_manager.cc',
321 'widget/aero_tooltip_manager.h', 323 'widget/aero_tooltip_manager.h',
322 'widget/child_window_message_processor.cc', 324 'widget/child_window_message_processor.cc',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 ['use_aura==1', { 391 ['use_aura==1', {
390 'dependencies': [ 392 'dependencies': [
391 '../aura/aura.gyp:aura', 393 '../aura/aura.gyp:aura',
392 ], 394 ],
393 'sources!': [ 395 'sources!': [
394 'controls/native_control.cc', 396 'controls/native_control.cc',
395 'widget/aero_tooltip_manager.cc', 397 'widget/aero_tooltip_manager.cc',
396 'widget/child_window_message_processor.cc', 398 'widget/child_window_message_processor.cc',
397 'widget/child_window_message_processor.h', 399 'widget/child_window_message_processor.h',
398 ], 400 ],
401 'conditions': [
402 ['OS=="win"', {
403 'sources/': [
404 ['include', 'controls/menu/menu_config_win.cc'],
405 ['include', 'controls/menu/menu_item_view_win.cc'],
406 ['include', 'controls/menu/menu_separator_win.cc'],
407 ['include', 'drag_utils_win.cc'],
408 ],
409 }],
410 ],
399 }], 411 }],
400 ['toolkit_uses_gtk == 1', { 412 ['toolkit_uses_gtk == 1', {
401 'dependencies': [ 413 'dependencies': [
402 '../build/linux/system.gyp:gtk', 414 '../build/linux/system.gyp:gtk',
403 '../build/linux/system.gyp:x11', 415 '../build/linux/system.gyp:x11',
404 '../build/linux/system.gyp:xext', 416 '../build/linux/system.gyp:xext',
405 ], 417 ],
406 'sources!': [ 418 'sources!': [
407 'accessibility/native_view_accessibility_win.cc', 419 'accessibility/native_view_accessibility_win.cc',
408 'controls/scrollbar/bitmap_scroll_bar.cc', 420 'controls/scrollbar/bitmap_scroll_bar.cc',
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 '-limm32.lib', 771 '-limm32.lib',
760 '-loleacc.lib', 772 '-loleacc.lib',
761 ] 773 ]
762 }, 774 },
763 'include_dirs': [ 775 'include_dirs': [
764 '<(DEPTH)/third_party/wtl/include', 776 '<(DEPTH)/third_party/wtl/include',
765 ], 777 ],
766 }], 778 }],
767 ], 779 ],
768 }, 780 },
781 {
782 'target_name': 'views_aura_desktop',
783 'type': 'executable',
784 'dependencies': [
785 '../base/base.gyp:base',
786 '../base/base.gyp:base_i18n',
787 '../skia/skia.gyp:skia',
788 '../third_party/icu/icu.gyp:icui18n',
789 '../third_party/icu/icu.gyp:icuuc',
790 '../ui/ui.gyp:gfx_resources',
791 '../ui/ui.gyp:ui',
792 '../ui/ui.gyp:ui_resources',
793 '../ui/ui.gyp:ui_resources_standard',
794 'views',
795 'views_desktop_lib',
796 ],
797 'include_dirs': [
798 '..',
799 ],
800 'sources': [
801 'aura_desktop/aura_desktop_main.cc',
802 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
803 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
804 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc',
805 ],
806 'conditions': [
807 ['OS=="win"', {
808 'link_settings': {
809 'libraries': [
810 '-limm32.lib',
811 '-loleacc.lib',
812 ]
813 },
814 'include_dirs': [
815 '<(DEPTH)/third_party/wtl/include',
816 ],
817 }],
818 ],
819 },
769 820
770 821
771 ], 822 ],
772 } 823 }
OLDNEW
« no previous file with comments | « views/view_aura.cc ('k') | views/widget/native_widget_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698