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

Side by Side Diff: net/net.gyp

Issue 5484001: Web2socket proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: additional files Created 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | net/web2socket_proxy/web2socket.h » ('j') | net/web2socket_proxy/web2socket.h » ('J')
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 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1417 'type': 'executable', 1417 'type': 'executable',
1418 'dependencies': [ 1418 'dependencies': [
1419 '../third_party/openssl/openssl.gyp:openssl', 1419 '../third_party/openssl/openssl.gyp:openssl',
1420 ], 1420 ],
1421 'sources': [ 1421 'sources': [
1422 'test/openssl_helper.cc', 1422 'test/openssl_helper.cc',
1423 ], 1423 ],
1424 }, 1424 },
1425 ], 1425 ],
1426 }], 1426 }],
1427 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"',
1428 { 'targets': [
1429 {
1430 'target_name': 'web2socket_proxy',
1431 'type': 'executable',
1432 'dependencies': [
1433 '../base/base.gyp:base',
1434 ],
1435 'sources': [
1436 'web2socket_proxy/web2socket.cc',
1437 'web2socket_proxy/web2socket.h',
1438 'web2socket_proxy/web2socket_conn.cc',
1439 'web2socket_proxy/web2socket_conn.h',
1440 'web2socket_proxy/web2socket_main.cc',
1441 'web2socket_proxy/web2socket_serv.cc',
1442 'web2socket_proxy/web2socket_serv.h',
1443 ],
1444 'include_dirs': [
1445 '..',
1446 ],
1447 }
1448 ],
1449 },], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
1427 ['OS=="win"', { 1450 ['OS=="win"', {
1428 'targets': [ 1451 'targets': [
1429 { 1452 {
1430 # TODO(port): dump_cache is still Windows-specific. 1453 # TODO(port): dump_cache is still Windows-specific.
1431 'target_name': 'dump_cache', 1454 'target_name': 'dump_cache',
1432 'type': 'executable', 1455 'type': 'executable',
1433 'dependencies': [ 1456 'dependencies': [
1434 'net', 1457 'net',
1435 '../base/base.gyp:base', 1458 '../base/base.gyp:base',
1436 ], 1459 ],
(...skipping 12 matching lines...) Expand all
1449 ], 1472 ],
1450 }], 1473 }],
1451 ], 1474 ],
1452 } 1475 }
1453 1476
1454 # Local Variables: 1477 # Local Variables:
1455 # tab-width:2 1478 # tab-width:2
1456 # indent-tabs-mode:nil 1479 # indent-tabs-mode:nil
1457 # End: 1480 # End:
1458 # vim: set expandtab tabstop=2 shiftwidth=2: 1481 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | net/web2socket_proxy/web2socket.h » ('j') | net/web2socket_proxy/web2socket.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698