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

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

Issue 203074: Refactor the DB code to make all DB layout tests pass on test_shell.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | « webkit/tools/test_shell/test_shell.cc ('k') | webkit/tools/test_shell/test_shell_webkit_init.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) 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 17 matching lines...) Expand all
28 'dependencies': [ 28 'dependencies': [
29 '../../../base/base.gyp:base', 29 '../../../base/base.gyp:base',
30 '../../../base/base.gyp:base_gfx', 30 '../../../base/base.gyp:base_gfx',
31 '../../../media/media.gyp:media', 31 '../../../media/media.gyp:media',
32 '../../../net/net.gyp:net', 32 '../../../net/net.gyp:net',
33 '../../../skia/skia.gyp:skia', 33 '../../../skia/skia.gyp:skia',
34 '../../../testing/gmock.gyp:gmock', 34 '../../../testing/gmock.gyp:gmock',
35 '../../../testing/gtest.gyp:gtest', 35 '../../../testing/gtest.gyp:gtest',
36 '../../../third_party/npapi/npapi.gyp:npapi', 36 '../../../third_party/npapi/npapi.gyp:npapi',
37 '../../webkit.gyp:appcache', 37 '../../webkit.gyp:appcache',
38 '../../webkit.gyp:database',
38 '../../webkit.gyp:glue', 39 '../../webkit.gyp:glue',
39 '../../webkit.gyp:webkit', 40 '../../webkit.gyp:webkit',
40 '../../webkit.gyp:inspector_resources', 41 '../../webkit.gyp:inspector_resources',
41 ], 42 ],
42 'msvs_guid': '77C32787-1B96-CB84-B905-7F170629F0AC', 43 'msvs_guid': '77C32787-1B96-CB84-B905-7F170629F0AC',
43 'sources': [ 44 'sources': [
44 'mac/DumpRenderTreePasteboard.h', 45 'mac/DumpRenderTreePasteboard.h',
45 'mac/DumpRenderTreePasteboard.m', 46 'mac/DumpRenderTreePasteboard.m',
46 'mac/test_shell_webview.h', 47 'mac/test_shell_webview.h',
47 'mac/test_shell_webview.mm', 48 'mac/test_shell_webview.mm',
48 'mac/test_webview_delegate.mm', 49 'mac/test_webview_delegate.mm',
49 'mac/webview_host.mm', 50 'mac/webview_host.mm',
50 'mac/webwidget_host.mm', 51 'mac/webwidget_host.mm',
51 'drag_delegate.cc', 52 'drag_delegate.cc',
52 'drag_delegate.h', 53 'drag_delegate.h',
53 'drop_delegate.cc', 54 'drop_delegate.cc',
54 'drop_delegate.h', 55 'drop_delegate.h',
55 'event_sending_controller.cc', 56 'event_sending_controller.cc',
56 'event_sending_controller.h', 57 'event_sending_controller.h',
57 'foreground_helper.h', 58 'foreground_helper.h',
58 'layout_test_controller.cc', 59 'layout_test_controller.cc',
59 'layout_test_controller.h', 60 'layout_test_controller.h',
60 'mock_webclipboard_impl.cc', 61 'mock_webclipboard_impl.cc',
61 'mock_webclipboard_impl.h', 62 'mock_webclipboard_impl.h',
62 'resource.h', 63 'resource.h',
63 'simple_appcache_system.cc', 64 'simple_appcache_system.cc',
64 'simple_appcache_system.h', 65 'simple_appcache_system.h',
65 'simple_clipboard_impl.cc', 66 'simple_clipboard_impl.cc',
67 'simple_database_system.cc',
68 'simple_database_system.h',
66 'simple_resource_loader_bridge.cc', 69 'simple_resource_loader_bridge.cc',
67 'simple_resource_loader_bridge.h', 70 'simple_resource_loader_bridge.h',
68 'test_navigation_controller.cc', 71 'test_navigation_controller.cc',
69 'test_navigation_controller.h', 72 'test_navigation_controller.h',
70 'test_shell.cc', 73 'test_shell.cc',
71 'test_shell.h', 74 'test_shell.h',
72 'test_shell_gtk.cc', 75 'test_shell_gtk.cc',
73 'test_shell_x11.cc', 76 'test_shell_x11.cc',
74 'test_shell_mac.mm', 77 'test_shell_mac.mm',
75 'test_shell_platform_delegate.h', 78 'test_shell_platform_delegate.h',
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 'link_settings': { 657 'link_settings': {
655 'libraries': [ 658 'libraries': [
656 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 659 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
657 ], 660 ],
658 }, 661 },
659 }, 662 },
660 ], 663 ],
661 }], 664 }],
662 ], 665 ],
663 } 666 }
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell.cc ('k') | webkit/tools/test_shell/test_shell_webkit_init.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698