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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | net/web2socket_proxy/web2socket.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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after
1407 'type': 'executable', 1407 'type': 'executable',
1408 'dependencies': [ 1408 'dependencies': [
1409 '../third_party/openssl/openssl.gyp:openssl', 1409 '../third_party/openssl/openssl.gyp:openssl',
1410 ], 1410 ],
1411 'sources': [ 1411 'sources': [
1412 'test/openssl_helper.cc', 1412 'test/openssl_helper.cc',
1413 ], 1413 ],
1414 }, 1414 },
1415 ], 1415 ],
1416 }], 1416 }],
1417 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"',
1418 { 'targets': [
1419 {
1420 'target_name': 'web2socket_proxy',
1421 'type': 'executable',
1422 'dependencies': [
1423 '../base/base.gyp:base',
1424 ],
1425 'sources': [
1426 'web2socket_proxy/web2socket.cc',
1427 'web2socket_proxy/web2socket.h',
1428 'web2socket_proxy/web2socket_conn.cc',
1429 'web2socket_proxy/web2socket_conn.h',
1430 'web2socket_proxy/web2socket_main.cc',
1431 'web2socket_proxy/web2socket_serv.cc',
1432 'web2socket_proxy/web2socket_serv.h',
1433 ],
1434 'include_dirs': [
1435 '..',
1436 ],
1437 }
1438 ],
1439 },], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
1417 ['OS=="win"', { 1440 ['OS=="win"', {
1418 'targets': [ 1441 'targets': [
1419 { 1442 {
1420 # TODO(port): dump_cache is still Windows-specific. 1443 # TODO(port): dump_cache is still Windows-specific.
1421 'target_name': 'dump_cache', 1444 'target_name': 'dump_cache',
1422 'type': 'executable', 1445 'type': 'executable',
1423 'dependencies': [ 1446 'dependencies': [
1424 'net', 1447 'net',
1425 '../base/base.gyp:base', 1448 '../base/base.gyp:base',
1426 ], 1449 ],
(...skipping 12 matching lines...) Expand all
1439 ], 1462 ],
1440 }], 1463 }],
1441 ], 1464 ],
1442 } 1465 }
1443 1466
1444 # Local Variables: 1467 # Local Variables:
1445 # tab-width:2 1468 # tab-width:2
1446 # indent-tabs-mode:nil 1469 # indent-tabs-mode:nil
1447 # End: 1470 # End:
1448 # vim: set expandtab tabstop=2 shiftwidth=2: 1471 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« 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