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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 11399002: Implemented GetWindowSnapshot on RenderViewImpl (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added stub methods for iOS 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
« no previous file with comments | « chrome/browser/ui/window_snapshot/window_snapshot_win.cc ('k') | chrome/chrome_tests_unit.gypi » ('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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser_ui', 8 'target_name': 'browser_ui',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 '../third_party/bzip2/bzip2.gyp:bzip2', 43 '../third_party/bzip2/bzip2.gyp:bzip2',
44 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 44 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
45 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', 45 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp',
46 '../third_party/icu/icu.gyp:icui18n', 46 '../third_party/icu/icu.gyp:icui18n',
47 '../third_party/icu/icu.gyp:icuuc', 47 '../third_party/icu/icu.gyp:icuuc',
48 '../third_party/libusb/libusb.gyp:libusb', 48 '../third_party/libusb/libusb.gyp:libusb',
49 '../third_party/libxml/libxml.gyp:libxml', 49 '../third_party/libxml/libxml.gyp:libxml',
50 '../third_party/zlib/zlib.gyp:zlib', 50 '../third_party/zlib/zlib.gyp:zlib',
51 '../ui/base/strings/ui_strings.gyp:ui_strings', 51 '../ui/base/strings/ui_strings.gyp:ui_strings',
52 '../ui/native_theme/native_theme.gyp:native_theme', 52 '../ui/native_theme/native_theme.gyp:native_theme',
53 '../ui/snapshot/snapshot.gyp:snapshot',
53 '../ui/ui.gyp:ui', 54 '../ui/ui.gyp:ui',
54 '../ui/ui.gyp:ui_resources', 55 '../ui/ui.gyp:ui_resources',
55 '../webkit/support/webkit_support.gyp:user_agent', 56 '../webkit/support/webkit_support.gyp:user_agent',
56 ], 57 ],
57 'include_dirs': [ 58 'include_dirs': [
58 '..', 59 '..',
59 '<(INTERMEDIATE_DIR)', 60 '<(INTERMEDIATE_DIR)',
60 # Needed by pepper_flash_component_installer.cc. 61 # Needed by pepper_flash_component_installer.cc.
61 '<(SHARED_INTERMEDIATE_DIR)', 62 '<(SHARED_INTERMEDIATE_DIR)',
62 ], 63 ],
(...skipping 2051 matching lines...) Expand 10 before | Expand all | Expand 10 after
2114 'browser/ui/webui/welcome_ui_android.h', 2115 'browser/ui/webui/welcome_ui_android.h',
2115 'browser/ui/window_sizer/window_sizer.cc', 2116 'browser/ui/window_sizer/window_sizer.cc',
2116 'browser/ui/window_sizer/window_sizer.h', 2117 'browser/ui/window_sizer/window_sizer.h',
2117 'browser/ui/window_sizer/window_sizer_ash.cc', 2118 'browser/ui/window_sizer/window_sizer_ash.cc',
2118 'browser/ui/window_sizer/window_sizer_aura.cc', 2119 'browser/ui/window_sizer/window_sizer_aura.cc',
2119 'browser/ui/window_sizer/window_sizer_gtk.cc', 2120 'browser/ui/window_sizer/window_sizer_gtk.cc',
2120 'browser/ui/window_sizer/window_sizer_mac.mm', 2121 'browser/ui/window_sizer/window_sizer_mac.mm',
2121 'browser/ui/window_sizer/window_sizer_win.cc', 2122 'browser/ui/window_sizer/window_sizer_win.cc',
2122 'browser/ui/window_snapshot/window_snapshot.cc', 2123 'browser/ui/window_snapshot/window_snapshot.cc',
2123 'browser/ui/window_snapshot/window_snapshot.h', 2124 'browser/ui/window_snapshot/window_snapshot.h',
2124 'browser/ui/window_snapshot/window_snapshot_aura.cc',
2125 'browser/ui/window_snapshot/window_snapshot_gtk.cc',
2126 'browser/ui/window_snapshot/window_snapshot_mac.mm',
2127 'browser/ui/window_snapshot/window_snapshot_win.cc',
2128 'browser/ui/zoom/zoom_controller.cc', 2125 'browser/ui/zoom/zoom_controller.cc',
2129 'browser/ui/zoom/zoom_controller.h', 2126 'browser/ui/zoom/zoom_controller.h',
2130 'browser/ui/zoom/zoom_observer.h', 2127 'browser/ui/zoom/zoom_observer.h',
2131 ], 2128 ],
2132 'conditions': [ 2129 'conditions': [
2133 ['OS != "ios"', { 2130 ['OS != "ios"', {
2134 'dependencies': [ 2131 'dependencies': [
2135 'autofill_regexes', 2132 'autofill_regexes',
2136 'browser_extensions', 2133 'browser_extensions',
2137 'browser/performance_monitor/performance_monitor.gyp:performance_mon itor', 2134 'browser/performance_monitor/performance_monitor.gyp:performance_mon itor',
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
2361 ['exclude', '^browser/ui/views/color_chooser_dialog.h'], 2358 ['exclude', '^browser/ui/views/color_chooser_dialog.h'],
2362 ['exclude', '^browser/ui/views/color_chooser_win.cc'], 2359 ['exclude', '^browser/ui/views/color_chooser_win.cc'],
2363 ['exclude', '^browser/ui/views/simple_message_box_win.cc'], 2360 ['exclude', '^browser/ui/views/simple_message_box_win.cc'],
2364 ['exclude', '^browser/ui/views/tabs/native_view_photobooth.h'], 2361 ['exclude', '^browser/ui/views/tabs/native_view_photobooth.h'],
2365 ['exclude', '^browser/ui/views/tabs/native_view_photobooth_win.cc'], 2362 ['exclude', '^browser/ui/views/tabs/native_view_photobooth_win.cc'],
2366 ['exclude', '^browser/ui/views/tabs/native_view_photobooth_win.h'], 2363 ['exclude', '^browser/ui/views/tabs/native_view_photobooth_win.h'],
2367 ['exclude', '^browser/ui/views/task_manager_view.cc'], 2364 ['exclude', '^browser/ui/views/task_manager_view.cc'],
2368 ['exclude', '^browser/ui/views/user_data_dir_dialog_view.cc'], 2365 ['exclude', '^browser/ui/views/user_data_dir_dialog_view.cc'],
2369 ['exclude', '^browser/ui/webui/help/version_updater_win.cc'], 2366 ['exclude', '^browser/ui/webui/help/version_updater_win.cc'],
2370 ['exclude', '^browser/ui/window_sizer/window_sizer_win.cc'], 2367 ['exclude', '^browser/ui/window_sizer/window_sizer_win.cc'],
2371 ['exclude', '^browser/ui/window_snapshot/window_snapshot_win.cc'],
2372 # TODO: (stevenjb/beng): Find a home for these. 2368 # TODO: (stevenjb/beng): Find a home for these.
2373 ['include', '^browser/ui/views/simple_message_box_views.cc'], 2369 ['include', '^browser/ui/views/simple_message_box_views.cc'],
2374 ['include', '^browser/ui/webui/certificate_viewer_webui.cc'], 2370 ['include', '^browser/ui/webui/certificate_viewer_webui.cc'],
2375 ['include', '^browser/ui/webui/certificate_viewer_webui.h'], 2371 ['include', '^browser/ui/webui/certificate_viewer_webui.h'],
2376 ['include', '^browser/ui/webui/certificate_viewer_ui.cc'], 2372 ['include', '^browser/ui/webui/certificate_viewer_ui.cc'],
2377 ['include', '^browser/ui/webui/certificate_viewer_ui.h'], 2373 ['include', '^browser/ui/webui/certificate_viewer_ui.h'],
2378 ], 2374 ],
2379 'dependencies': [ 2375 'dependencies': [
2380 # aura uses some of ash resources. 2376 # aura uses some of ash resources.
2381 '../ash/ash.gyp:ash_resources', 2377 '../ash/ash.gyp:ash_resources',
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
2784 }, { # else: enable_app_list==0 2780 }, { # else: enable_app_list==0
2785 'sources/': [ 2781 'sources/': [
2786 ['exclude', '^browser/ui/views/app_list/'], 2782 ['exclude', '^browser/ui/views/app_list/'],
2787 ['exclude', '^browser/ui/app_list/'], 2783 ['exclude', '^browser/ui/app_list/'],
2788 ] 2784 ]
2789 }], 2785 }],
2790 ], 2786 ],
2791 }, 2787 },
2792 ], 2788 ],
2793 } 2789 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/window_snapshot/window_snapshot_win.cc ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698