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

Side by Side Diff: ui/ui.gyp

Issue 10821104: Support GrabWindowSnapshot with no g_browser_process (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebased Created 8 years, 4 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
« no previous file with comments | « chrome_frame/test/test_with_web_server.cc ('k') | ui/window_snapshot/window_snapshot.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) 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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 'gfx/transform_util.h', 460 'gfx/transform_util.h',
461 'gfx/video_decode_acceleration_support_mac.h', 461 'gfx/video_decode_acceleration_support_mac.h',
462 'gfx/video_decode_acceleration_support_mac.mm', 462 'gfx/video_decode_acceleration_support_mac.mm',
463 'ui_controls/ui_controls.h', 463 'ui_controls/ui_controls.h',
464 'ui_controls/ui_controls_aura.cc', 464 'ui_controls/ui_controls_aura.cc',
465 'ui_controls/ui_controls_internal_win.h', 465 'ui_controls/ui_controls_internal_win.h',
466 'ui_controls/ui_controls_internal_win.cc', 466 'ui_controls/ui_controls_internal_win.cc',
467 'ui_controls/ui_controls_gtk.cc', 467 'ui_controls/ui_controls_gtk.cc',
468 'ui_controls/ui_controls_mac.mm', 468 'ui_controls/ui_controls_mac.mm',
469 'ui_controls/ui_controls_win.cc', 469 'ui_controls/ui_controls_win.cc',
470 'window_snapshot/window_snapshot_aura.cc',
471 'window_snapshot/window_snapshot_gtk.cc',
472 'window_snapshot/window_snapshot_mac.mm',
473 'window_snapshot/window_snapshot_win.cc',
470 ], 474 ],
471 'conditions': [ 475 'conditions': [
472 ['OS!="ios"', { 476 ['OS!="ios"', {
473 'dependencies': [ 477 'dependencies': [
474 '<(libjpeg_gyp_path):libjpeg', 478 '<(libjpeg_gyp_path):libjpeg',
475 ], 479 ],
476 }], 480 }],
477 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. 481 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc.
478 # http://crbug.com/105550 482 # http://crbug.com/105550
479 ['use_canvas_skia==1', { 483 ['use_canvas_skia==1', {
(...skipping 21 matching lines...) Expand all
501 ['exclude', 'base/win/mouse_wheel_util.h'], 505 ['exclude', 'base/win/mouse_wheel_util.h'],
502 ['exclude', 'base/work_area_watcher_observer.h'], 506 ['exclude', 'base/work_area_watcher_observer.h'],
503 ['exclude', 'base/x/active_window_watcher_x.cc'], 507 ['exclude', 'base/x/active_window_watcher_x.cc'],
504 ['exclude', 'base/x/active_window_watcher_x.h'], 508 ['exclude', 'base/x/active_window_watcher_x.h'],
505 ['exclude', 'base/x/active_window_watcher_x_observer.h'], 509 ['exclude', 'base/x/active_window_watcher_x_observer.h'],
506 ['exclude', 'base/x/root_window_property_watcher_x.cc'], 510 ['exclude', 'base/x/root_window_property_watcher_x.cc'],
507 ['exclude', 'base/x/root_window_property_watcher_x.h'], 511 ['exclude', 'base/x/root_window_property_watcher_x.h'],
508 ['exclude', 'base/x/work_area_watcher_x.cc'], 512 ['exclude', 'base/x/work_area_watcher_x.cc'],
509 ['exclude', 'base/x/work_area_watcher_x.h'], 513 ['exclude', 'base/x/work_area_watcher_x.h'],
510 ['exclude', 'ui_controls_win.cc'], 514 ['exclude', 'ui_controls_win.cc'],
515 ['exclude', 'window_snapshot/window_snapshot_win.cc'],
511 ], 516 ],
512 }, { # use_aura!=1 517 }, { # use_aura!=1
513 'sources!': [ 518 'sources!': [
514 'base/cursor/cursor.cc', 519 'base/cursor/cursor.cc',
515 'base/cursor/cursor.h', 520 'base/cursor/cursor.h',
516 'base/cursor/cursor_win.cc', 521 'base/cursor/cursor_win.cc',
517 'base/cursor/cursor_x11.cc', 522 'base/cursor/cursor_x11.cc',
518 'base/native_theme/native_theme_aura.cc', 523 'base/native_theme/native_theme_aura.cc',
519 'base/native_theme/native_theme_aura.h', 524 'base/native_theme/native_theme_aura.h',
520 ] 525 ]
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 796 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
792 'os.chmod(\'<(ui_copy_dest)\', 0700)' 797 'os.chmod(\'<(ui_copy_dest)\', 0700)'
793 ] 798 ]
794 } 799 }
795 ], 800 ],
796 }, 801 },
797 ], 802 ],
798 }], 803 }],
799 ], 804 ],
800 } 805 }
OLDNEW
« no previous file with comments | « chrome_frame/test/test_with_web_server.cc ('k') | ui/window_snapshot/window_snapshot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698