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

Unified Diff: net/net.gyp

Issue 5484001: Web2socket proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for signed/unsigned confusion + cosmetic Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/web2socket_proxy/web2socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index 485ac38b46a2bbba3e86082455039dab65ebb9d0..ead0eecfd1483680c2fcfb5488f63089791051c2 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -1414,6 +1414,29 @@
},
],
}],
+ ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"',
+ { 'targets': [
+ {
+ 'target_name': 'web2socket_proxy',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ 'sources': [
+ 'web2socket_proxy/web2socket.cc',
+ 'web2socket_proxy/web2socket.h',
+ 'web2socket_proxy/web2socket_conn.cc',
+ 'web2socket_proxy/web2socket_conn.h',
+ 'web2socket_proxy/web2socket_main.cc',
+ 'web2socket_proxy/web2socket_serv.cc',
+ 'web2socket_proxy/web2socket_serv.h',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ }
+ ],
+ },], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
['OS=="win"', {
'targets': [
{
« no previous file with comments | « no previous file | net/web2socket_proxy/web2socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698