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

Side by Side Diff: webkit/webkit.gyp

Issue 202058: WebSocket implementation in Chromium. (Closed)
Patch Set: update Created 11 years, 2 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 | « webkit/tools/test_shell/test_shell.gyp ('k') | no next file » | 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 'includes': [ 6 'includes': [
7 '../third_party/WebKit/WebKit/chromium/features.gypi', 7 '../third_party/WebKit/WebKit/chromium/features.gypi',
8 '../third_party/WebKit/WebCore/WebCore.gypi', 8 '../third_party/WebKit/WebCore/WebCore.gypi',
9 ], 9 ],
10 'variables': { 10 'variables': {
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 'api/public/WebPoint.h', 126 'api/public/WebPoint.h',
127 'api/public/WebPopupMenu.h', 127 'api/public/WebPopupMenu.h',
128 'api/public/WebPopupMenuInfo.h', 128 'api/public/WebPopupMenuInfo.h',
129 'api/public/WebRange.h', 129 'api/public/WebRange.h',
130 'api/public/WebRect.h', 130 'api/public/WebRect.h',
131 'api/public/WebScreenInfo.h', 131 'api/public/WebScreenInfo.h',
132 'api/public/WebScriptSource.h', 132 'api/public/WebScriptSource.h',
133 'api/public/WebSecurityOrigin.h', 133 'api/public/WebSecurityOrigin.h',
134 'api/public/WebSettings.h', 134 'api/public/WebSettings.h',
135 'api/public/WebSize.h', 135 'api/public/WebSize.h',
136 'api/public/WebSocketStreamError.h',
137 'api/public/WebSocketStreamHandle.h',
138 'api/public/WebSocketStreamHandleClient.h',
136 'api/public/WebStorageArea.h', 139 'api/public/WebStorageArea.h',
137 'api/public/WebStorageEventDispatcher.h', 140 'api/public/WebStorageEventDispatcher.h',
138 'api/public/WebStorageNamespace.h', 141 'api/public/WebStorageNamespace.h',
139 'api/public/WebString.h', 142 'api/public/WebString.h',
140 'api/public/WebTextAffinity.h', 143 'api/public/WebTextAffinity.h',
141 'api/public/WebTextDirection.h', 144 'api/public/WebTextDirection.h',
142 'api/public/WebURL.h', 145 'api/public/WebURL.h',
143 'api/public/WebURLError.h', 146 'api/public/WebURLError.h',
144 'api/public/WebURLLoader.h', 147 'api/public/WebURLLoader.h',
145 'api/public/WebURLLoaderClient.h', 148 'api/public/WebURLLoaderClient.h',
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 'glue/webmenurunner_mac.mm', 635 'glue/webmenurunner_mac.mm',
633 'glue/webplugin.h', 636 'glue/webplugin.h',
634 'glue/webplugin_delegate.h', 637 'glue/webplugin_delegate.h',
635 'glue/webplugin_impl.cc', 638 'glue/webplugin_impl.cc',
636 'glue/webplugin_impl.h', 639 'glue/webplugin_impl.h',
637 'glue/webplugininfo.h', 640 'glue/webplugininfo.h',
638 'glue/webpopupmenu_impl.cc', 641 'glue/webpopupmenu_impl.cc',
639 'glue/webpopupmenu_impl.h', 642 'glue/webpopupmenu_impl.h',
640 'glue/webpreferences.cc', 643 'glue/webpreferences.cc',
641 'glue/webpreferences.h', 644 'glue/webpreferences.h',
645 'glue/websocketstreamhandle_bridge.h',
646 'glue/websocketstreamhandle_delegate.h',
647 'glue/websocketstreamhandle_impl.cc',
648 'glue/websocketstreamhandle_impl.h',
642 'glue/webthemeengine_impl_win.cc', 649 'glue/webthemeengine_impl_win.cc',
643 'glue/weburlloader_impl.cc', 650 'glue/weburlloader_impl.cc',
644 'glue/weburlloader_impl.h', 651 'glue/weburlloader_impl.h',
645 'glue/webview.h', 652 'glue/webview.h',
646 'glue/webview_delegate.h', 653 'glue/webview_delegate.h',
647 'glue/webview_impl.cc', 654 'glue/webview_impl.cc',
648 'glue/webview_impl.h', 655 'glue/webview_impl.h',
649 'glue/webworker_impl.cc', 656 'glue/webworker_impl.cc',
650 'glue/webworker_impl.h', 657 'glue/webworker_impl.h',
651 'glue/webworkerclient_impl.cc', 658 'glue/webworkerclient_impl.cc',
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 ], 784 ],
778 } 785 }
779 ], # targets 786 ], # targets
780 } 787 }
781 788
782 # Local Variables: 789 # Local Variables:
783 # tab-width:2 790 # tab-width:2
784 # indent-tabs-mode:nil 791 # indent-tabs-mode:nil
785 # End: 792 # End:
786 # vim: set expandtab tabstop=2 shiftwidth=2: 793 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698