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

Side by Side Diff: net/net.gyp

Issue 99333: A utility driver for doing client/server HTTP transaction... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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/tools/fetch/fetch_client.cc » ('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) 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 'dependencies': [ 613 'dependencies': [
614 'net', 614 'net',
615 '../base/base.gyp:base', 615 '../base/base.gyp:base',
616 ], 616 ],
617 'sources': [ 617 'sources': [
618 'tools/dump_cache/dump_cache.cc', 618 'tools/dump_cache/dump_cache.cc',
619 'tools/dump_cache/dump_files.cc', 619 'tools/dump_cache/dump_files.cc',
620 'tools/dump_cache/upgrade.cc', 620 'tools/dump_cache/upgrade.cc',
621 ], 621 ],
622 }, 622 },
623 {
624 'target_name': 'fetch_client',
625 'type': 'executable',
626 'dependencies': [
627 'net',
628 '../base/base.gyp:base',
629 '../base/base.gyp:test_support_base',
630 '../testing/gtest.gyp:gtest',
631 ],
632 'msvs_guid': 'DABB8796-B9A2-4CD9-BF89-09B03E92B123',
633 'sources': [
634 'tools/fetch/fetch_client.cc',
635 ],
636 },
637 {
638 'target_name': 'fetch_server',
639 'type': 'executable',
640 'dependencies': [
641 'net',
642 '../base/base.gyp:base',
643 '../base/base.gyp:test_support_base',
644 '../testing/gtest.gyp:gtest',
645 ],
646 'msvs_guid': 'DABB8796-B9A2-4CD9-BF89-09B03E92B124',
647 'sources': [
648 'tools/fetch/fetch_server.cc',
649 'tools/fetch/http_listen_socket.cc',
650 'tools/fetch/http_listen_socket.h',
651 'tools/fetch/http_server.cc',
652 'tools/fetch/http_server.h',
653 'tools/fetch/http_session.cc',
654 'tools/fetch/http_session.h',
655 ],
656 },
623 ], 657 ],
624 }], 658 }],
625 ], 659 ],
626 } 660 }
OLDNEW
« no previous file with comments | « no previous file | net/tools/fetch/fetch_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698