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

Side by Side Diff: Source/WebKit/chromium/WebKit.gypi

Issue 8929009: Revert 102683 - Revert 96912 - Always call setActive() in WebViewImpl::setFocus(), (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 9 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 | « Source/WebKit/chromium/WebKit.gyp ('k') | Source/WebKit/chromium/tests/WebFrameTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2010 Google Inc. All rights reserved. 2 # Copyright (C) 2010 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'tests/CCLayerTreeHostCommonTest.cpp', 63 'tests/CCLayerTreeHostCommonTest.cpp',
64 'tests/CCLayerTreeHostImplTest.cpp', 64 'tests/CCLayerTreeHostImplTest.cpp',
65 'tests/CCLayerTreeHostTest.cpp', 65 'tests/CCLayerTreeHostTest.cpp',
66 'tests/CCLayerTreeTestCommon.h', 66 'tests/CCLayerTreeTestCommon.h',
67 'tests/CCRenderSurfaceTest.cpp', 67 'tests/CCRenderSurfaceTest.cpp',
68 'tests/CCSchedulerTest.cpp', 68 'tests/CCSchedulerTest.cpp',
69 'tests/CCSchedulerStateMachineTest.cpp', 69 'tests/CCSchedulerStateMachineTest.cpp',
70 'tests/CCSchedulerTestCommon.h', 70 'tests/CCSchedulerTestCommon.h',
71 'tests/CCThreadTaskTest.cpp', 71 'tests/CCThreadTaskTest.cpp',
72 'tests/FloatQuadTest.cpp', 72 'tests/FloatQuadTest.cpp',
73 'tests/FrameTestHelpers.cpp',
74 'tests/FrameTestHelpers.h',
73 'tests/IDBBindingUtilitiesTest.cpp', 75 'tests/IDBBindingUtilitiesTest.cpp',
74 'tests/IDBKeyPathTest.cpp', 76 'tests/IDBKeyPathTest.cpp',
75 'tests/IDBLevelDBCodingTest.cpp', 77 'tests/IDBLevelDBCodingTest.cpp',
76 'tests/InnerGestureRecognizerTest.cpp', 78 'tests/InnerGestureRecognizerTest.cpp',
77 'tests/KeyboardTest.cpp', 79 'tests/KeyboardTest.cpp',
78 'tests/KURLTest.cpp', 80 'tests/KURLTest.cpp',
79 'tests/LayerChromiumTest.cpp', 81 'tests/LayerChromiumTest.cpp',
80 'tests/MockGraphicsContext3DTest.cpp', 82 'tests/MockGraphicsContext3DTest.cpp',
81 'tests/MockWebGraphicsContext3D.h', 83 'tests/MockWebGraphicsContext3D.h',
82 'tests/PODArenaTest.cpp', 84 'tests/PODArenaTest.cpp',
83 'tests/PODIntervalTreeTest.cpp', 85 'tests/PODIntervalTreeTest.cpp',
84 'tests/PODRedBlackTreeTest.cpp', 86 'tests/PODRedBlackTreeTest.cpp',
85 'tests/RenderTableCellTest.cpp', 87 'tests/RenderTableCellTest.cpp',
86 'tests/TiledLayerChromiumTest.cpp', 88 'tests/TiledLayerChromiumTest.cpp',
87 'tests/TilingDataTest.cpp', 89 'tests/TilingDataTest.cpp',
88 'tests/TreeSynchronizerTest.cpp', 90 'tests/TreeSynchronizerTest.cpp',
89 'tests/TreeTestHelpers.cpp', 91 'tests/TreeTestHelpers.cpp',
90 'tests/TreeTestHelpers.h', 92 'tests/TreeTestHelpers.h',
91 'tests/WebCompositorInputHandlerImplTest.cpp', 93 'tests/WebCompositorInputHandlerImplTest.cpp',
92 'tests/WebFrameTest.cpp', 94 'tests/WebFrameTest.cpp',
93 'tests/WebLayerTest.cpp', 95 'tests/WebLayerTest.cpp',
94 'tests/WebPageNewSerializerTest.cpp', 96 'tests/WebPageNewSerializerTest.cpp',
95 'tests/WebPageSerializerTest.cpp', 97 'tests/WebPageSerializerTest.cpp',
96 'tests/WebURLRequestTest.cpp', 98 'tests/WebURLRequestTest.cpp',
99 'tests/WebViewTest.cpp',
97 ], 100 ],
98 101
99 'conditions': [ 102 'conditions': [
100 ['OS=="win"', { 103 ['OS=="win"', {
101 'webkit_unittest_files': [ 104 'webkit_unittest_files': [
102 # FIXME: Port DragImageTest to Mac. 105 # FIXME: Port DragImageTest to Mac.
103 'tests/DragImageTest.cpp', 106 'tests/DragImageTest.cpp',
104 # FIXME: Port PopupMenuTest to Linux and Mac. 107 # FIXME: Port PopupMenuTest to Linux and Mac.
105 'tests/PopupMenuTest.cpp', 108 'tests/PopupMenuTest.cpp',
106 'tests/TransparencyWinTest.cpp', 109 'tests/TransparencyWinTest.cpp',
(...skipping 17 matching lines...) Expand all
124 }], 127 }],
125 ], 128 ],
126 }, 129 },
127 } 130 }
128 131
129 # Local Variables: 132 # Local Variables:
130 # tab-width:2 133 # tab-width:2
131 # indent-tabs-mode:nil 134 # indent-tabs-mode:nil
132 # End: 135 # End:
133 # vim: set expandtab tabstop=2 shiftwidth=2: 136 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/WebKit.gyp ('k') | Source/WebKit/chromium/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698