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

Side by Side Diff: ui/ui.gyp

Issue 11399002: Implemented GetWindowSnapshot on RenderViewImpl (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed aura snapshot circular dependency Created 8 years 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
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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 'base/win/mouse_wheel_util.h', 317 'base/win/mouse_wheel_util.h',
318 'base/win/scoped_ole_initializer.cc', 318 'base/win/scoped_ole_initializer.cc',
319 'base/win/scoped_ole_initializer.h', 319 'base/win/scoped_ole_initializer.h',
320 'base/win/scoped_set_map_mode.h', 320 'base/win/scoped_set_map_mode.h',
321 'base/win/shell.cc', 321 'base/win/shell.cc',
322 'base/win/shell.h', 322 'base/win/shell.h',
323 'base/win/singleton_hwnd.cc', 323 'base/win/singleton_hwnd.cc',
324 'base/win/singleton_hwnd.h', 324 'base/win/singleton_hwnd.h',
325 'base/win/window_impl.cc', 325 'base/win/window_impl.cc',
326 'base/win/window_impl.h', 326 'base/win/window_impl.h',
327 'base/snapshot/snapshot.h',
328 'base/snapshot/snapshot_android.cc',
329 'base/snapshot/snapshot_aura.cc',
330 'base/snapshot/snapshot_gtk.cc',
331 'base/snapshot/snapshot_mac.mm',
332 'base/snapshot/snapshot_win.cc',
327 'base/work_area_watcher_observer.h', 333 'base/work_area_watcher_observer.h',
328 'base/x/active_window_watcher_x.cc', 334 'base/x/active_window_watcher_x.cc',
329 'base/x/active_window_watcher_x.h', 335 'base/x/active_window_watcher_x.h',
330 'base/x/active_window_watcher_x_observer.h', 336 'base/x/active_window_watcher_x_observer.h',
331 'base/x/events_x.cc', 337 'base/x/events_x.cc',
332 'base/x/root_window_property_watcher_x.cc', 338 'base/x/root_window_property_watcher_x.cc',
333 'base/x/root_window_property_watcher_x.h', 339 'base/x/root_window_property_watcher_x.h',
334 'base/x/valuators.cc', 340 'base/x/valuators.cc',
335 'base/x/valuators.h', 341 'base/x/valuators.h',
336 'base/x/work_area_watcher_x.cc', 342 'base/x/work_area_watcher_x.cc',
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 'base/cursor/cursor_loader_x11.cc', 616 'base/cursor/cursor_loader_x11.cc',
611 'base/cursor/cursor_loader_x11.h', 617 'base/cursor/cursor_loader_x11.h',
612 'base/cursor/cursor_win.cc', 618 'base/cursor/cursor_win.cc',
613 'base/cursor/cursor_x11.cc', 619 'base/cursor/cursor_x11.cc',
614 ] 620 ]
615 }], 621 }],
616 ['use_aura==1 and OS=="win"', { 622 ['use_aura==1 and OS=="win"', {
617 'sources/': [ 623 'sources/': [
618 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'], 624 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'],
619 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'], 625 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'],
626 ['exclude', 'base/snapshot/snapshot_win.cc'],
620 ], 627 ],
621 }], 628 }],
622 ['use_aura==0 and toolkit_views==0', { 629 ['use_aura==0 and toolkit_views==0', {
623 'sources/': [ 630 'sources/': [
624 ['exclude', '^base/gestures/*'], 631 ['exclude', '^base/gestures/*'],
625 ] 632 ]
626 }], 633 }],
627 ['use_aura==1 and use_ash==0 and OS=="linux"', { 634 ['use_aura==1 and use_ash==0 and OS=="linux"', {
628 'sources': [ 635 'sources': [
629 'base/linux_ui.cc', 636 'base/linux_ui.cc',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 }, 888 },
882 'dependencies': [ 889 'dependencies': [
883 '../base/base.gyp:base_java', 890 '../base/base.gyp:base_java',
884 ], 891 ],
885 'includes': [ '../build/java.gypi' ], 892 'includes': [ '../build/java.gypi' ],
886 }, 893 },
887 ], 894 ],
888 }], 895 }],
889 ], 896 ],
890 } 897 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698