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

Side by Side Diff: ui/views/views.gyp

Issue 10939006: Make cursors work on win aura. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 8 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 | « ui/views/view.cc ('k') | ui/views/widget/desktop_native_widget_aura.cc » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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': [
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 'widget/desktop_capture_client.h', 313 'widget/desktop_capture_client.h',
314 'widget/desktop_native_widget_aura.cc', 314 'widget/desktop_native_widget_aura.cc',
315 'widget/desktop_native_widget_aura.h', 315 'widget/desktop_native_widget_aura.h',
316 'widget/desktop_native_widget_helper_aura.cc', 316 'widget/desktop_native_widget_helper_aura.cc',
317 'widget/desktop_native_widget_helper_aura.h', 317 'widget/desktop_native_widget_helper_aura.h',
318 'widget/desktop_root_window_host.h', 318 'widget/desktop_root_window_host.h',
319 'widget/desktop_root_window_host_linux.cc', 319 'widget/desktop_root_window_host_linux.cc',
320 'widget/desktop_root_window_host_linux.h', 320 'widget/desktop_root_window_host_linux.h',
321 'widget/desktop_root_window_host_win.cc', 321 'widget/desktop_root_window_host_win.cc',
322 'widget/desktop_root_window_host_win.h', 322 'widget/desktop_root_window_host_win.h',
323 'widget/desktop_screen_position_client.cc',
324 'widget/desktop_screen_position_client.h',
323 'widget/drop_helper.cc', 325 'widget/drop_helper.cc',
324 'widget/drop_helper.h', 326 'widget/drop_helper.h',
325 'widget/drop_target_win.cc', 327 'widget/drop_target_win.cc',
326 'widget/drop_target_win.h', 328 'widget/drop_target_win.h',
327 'widget/root_view.cc', 329 'widget/root_view.cc',
328 'widget/root_view.h', 330 'widget/root_view.h',
329 'widget/tooltip_manager_aura.cc', 331 'widget/tooltip_manager_aura.cc',
330 'widget/tooltip_manager_aura.h', 332 'widget/tooltip_manager_aura.h',
331 'widget/tooltip_manager_win.cc', 333 'widget/tooltip_manager_win.cc',
332 'widget/tooltip_manager_win.h', 334 'widget/tooltip_manager_win.h',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 }], 427 }],
426 ['use_aura==0', { 428 ['use_aura==0', {
427 'sources/': [ 429 'sources/': [
428 ['exclude', '/desktop_[^/]*\\.cc$'], 430 ['exclude', '/desktop_[^/]*\\.cc$'],
429 ['exclude', '/x11_[^/]*\\.cc$'], 431 ['exclude', '/x11_[^/]*\\.cc$'],
430 ], 432 ],
431 }], 433 }],
432 ['chromeos==1', { 434 ['chromeos==1', {
433 'sources/': [ 435 'sources/': [
434 ['exclude', '/desktop_[^/]*\\.cc$'], 436 ['exclude', '/desktop_[^/]*\\.cc$'],
435 ['include', 'desktop_native_widget_helper_aura.cc'], 437 ['include', 'widget/desktop_native_widget_helper_aura.cc'],
436 ['include', 'desktop_native_widget_helper_aura.h'], 438 ['include', 'widget/desktop_native_widget_helper_aura.h'],
439 ['include', 'widget/desktop_screen_position_client.cc'],
440 ['include', 'widget/desktop_screen_position_client.h'],
437 ], 441 ],
438 }], 442 }],
439 ['use_aura==0 and OS=="win"', { 443 ['use_aura==0 and OS=="win"', {
440 'sources!': [ 444 'sources!': [
441 'controls/menu/menu_config_views.cc', 445 'controls/menu/menu_config_views.cc',
442 'controls/menu/menu_item_view_views.cc', 446 'controls/menu/menu_item_view_views.cc',
443 'controls/menu/menu_separator_views.cc', 447 'controls/menu/menu_separator_views.cc',
444 'controls/table/group_table_view_views.cc', 448 'controls/table/group_table_view_views.cc',
445 'controls/table/group_table_view_views.h', 449 'controls/table/group_table_view_views.h',
446 'controls/table/table_view_views.cc', 450 'controls/table/table_view_views.cc',
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 'sources/': [ 838 'sources/': [
835 # This is needed because the aura rule strips it from the default 839 # This is needed because the aura rule strips it from the default
836 # sources list. 840 # sources list.
837 ['include', '^../../content/app/startup_helper_win.cc'], 841 ['include', '^../../content/app/startup_helper_win.cc'],
838 ], 842 ],
839 }], 843 }],
840 ], 844 ],
841 }, # target_name: views_examples_with_content_exe 845 }, # target_name: views_examples_with_content_exe
842 ], 846 ],
843 } 847 }
OLDNEW
« no previous file with comments | « ui/views/view.cc ('k') | ui/views/widget/desktop_native_widget_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698