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

Side by Side Diff: webkit/tools/test_shell/test_shell.gyp

Issue 100144: Move simple_clipboard_impl.cc to webkit/tools/test_shell where it belongs. (Closed)
Patch Set: vcproj Created 11 years, 7 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
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'test_shell_windows_resource_files': [ 8 'test_shell_windows_resource_files': [
9 'resources/test_shell.rc', 9 'resources/test_shell.rc',
10 'resources/pan_east.cur', 10 'resources/pan_east.cur',
(...skipping 21 matching lines...) Expand all
32 '../../../base/base.gyp:base', 32 '../../../base/base.gyp:base',
33 '../../../base/base.gyp:base_gfx', 33 '../../../base/base.gyp:base_gfx',
34 '../../../net/net.gyp:net', 34 '../../../net/net.gyp:net',
35 '../../../skia/skia.gyp:skia', 35 '../../../skia/skia.gyp:skia',
36 '../../../testing/gtest.gyp:gtest', 36 '../../../testing/gtest.gyp:gtest',
37 '../../../third_party/npapi/npapi.gyp:npapi', 37 '../../../third_party/npapi/npapi.gyp:npapi',
38 '../../webkit.gyp:glue', 38 '../../webkit.gyp:glue',
39 '../../webkit.gyp:webkit', 39 '../../webkit.gyp:webkit',
40 ], 40 ],
41 'sources': [ 41 'sources': [
42 # TODO: Clean this up.
43 # An alternate implementation for chrome on windows lives in:
44 # chrome/renderer/renderer_glue.cc
45 # As a consequence this can't be baked directly into glue.
46 # This version is needed for test_shell and test_shell_tests so
47 # it gets baked into test_shell_common for now.
48 '../../glue/simple_clipboard_impl.cc',
49 'mac/DumpRenderTreePasteboard.h', 42 'mac/DumpRenderTreePasteboard.h',
50 'mac/DumpRenderTreePasteboard.m', 43 'mac/DumpRenderTreePasteboard.m',
51 'mac/test_shell_webview.h', 44 'mac/test_shell_webview.h',
52 'mac/test_shell_webview.mm', 45 'mac/test_shell_webview.mm',
53 'mac/test_webview_delegate.mm', 46 'mac/test_webview_delegate.mm',
54 'mac/webview_host.mm', 47 'mac/webview_host.mm',
55 'mac/webwidget_host.mm', 48 'mac/webwidget_host.mm',
56 'drag_delegate.cc', 49 'drag_delegate.cc',
57 'drag_delegate.h', 50 'drag_delegate.h',
58 'drop_delegate.cc', 51 'drop_delegate.cc',
59 'drop_delegate.h', 52 'drop_delegate.h',
60 'event_sending_controller.cc', 53 'event_sending_controller.cc',
61 'event_sending_controller.h', 54 'event_sending_controller.h',
62 'foreground_helper.h', 55 'foreground_helper.h',
63 'layout_test_controller.cc', 56 'layout_test_controller.cc',
64 'layout_test_controller.h', 57 'layout_test_controller.h',
65 'mock_webclipboard_impl.cc', 58 'mock_webclipboard_impl.cc',
66 'mock_webclipboard_impl.h', 59 'mock_webclipboard_impl.h',
67 'resource.h', 60 'resource.h',
61 'simple_clipboard_impl.cc',
68 'simple_resource_loader_bridge.cc', 62 'simple_resource_loader_bridge.cc',
69 'simple_resource_loader_bridge.h', 63 'simple_resource_loader_bridge.h',
70 'test_navigation_controller.cc', 64 'test_navigation_controller.cc',
71 'test_navigation_controller.h', 65 'test_navigation_controller.h',
72 'test_shell.cc', 66 'test_shell.cc',
73 'test_shell.h', 67 'test_shell.h',
74 'test_shell_gtk.cc', 68 'test_shell_gtk.cc',
75 'test_shell_x11.cc', 69 'test_shell_x11.cc',
76 'test_shell_mac.mm', 70 'test_shell_mac.mm',
77 'test_shell_platform_delegate.h', 71 'test_shell_platform_delegate.h',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 '../../../build/temp_gyp/breakpad.gyp:breakpad_handler', 139 '../../../build/temp_gyp/breakpad.gyp:breakpad_handler',
146 '../../default_plugin/default_plugin.gyp:default_plugin', 140 '../../default_plugin/default_plugin.gyp:default_plugin',
147 ], 141 ],
148 }, { # else: OS!=win 142 }, { # else: OS!=win
149 'sources/': [ 143 'sources/': [
150 ['exclude', '_win\\.cc$'], 144 ['exclude', '_win\\.cc$'],
151 ], 145 ],
152 'sources!': [ 146 'sources!': [
153 'drag_delegate.cc', 147 'drag_delegate.cc',
154 'drop_delegate.cc', 148 'drop_delegate.cc',
155 '../../glue/simple_clipboard_impl.cc',
156 ], 149 ],
157 }], 150 }],
158 ], 151 ],
159 }, 152 },
160 { 153 {
161 'target_name': 'test_shell', 154 'target_name': 'test_shell',
162 'type': 'executable', 155 'type': 'executable',
163 'mac_bundle': 1, 156 'mac_bundle': 1,
164 'msvs_guid': 'FA39524D-3067-4141-888D-28A86C66F2B9', 157 'msvs_guid': 'FA39524D-3067-4141-888D-28A86C66F2B9',
165 'dependencies': [ 158 'dependencies': [
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 'conditions': [ 518 'conditions': [
526 ['OS!="win"', { 519 ['OS!="win"', {
527 'sources!' : ['test_worker/test_worker.def'], 520 'sources!' : ['test_worker/test_worker.def'],
528 }], 521 }],
529 ], 522 ],
530 }, 523 },
531 ], 524 ],
532 }], 525 }],
533 ], 526 ],
534 } 527 }
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/simple_clipboard_impl.cc ('k') | webkit/tools/test_shell/test_shell.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698