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

Side by Side Diff: net/net.gyp

Issue 428004: Command line utility to run the HostResolver. ... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 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/tools/hresolv/hresolv.cc » ('j') | net/tools/hresolv/hresolv.cc » ('J')
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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 'tools/fetch/http_listen_socket.cc', 836 'tools/fetch/http_listen_socket.cc',
837 'tools/fetch/http_listen_socket.h', 837 'tools/fetch/http_listen_socket.h',
838 'tools/fetch/http_server.cc', 838 'tools/fetch/http_server.cc',
839 'tools/fetch/http_server.h', 839 'tools/fetch/http_server.h',
840 'tools/fetch/http_server_request_info.h', 840 'tools/fetch/http_server_request_info.h',
841 'tools/fetch/http_server_response_info.h', 841 'tools/fetch/http_server_response_info.h',
842 'tools/fetch/http_session.cc', 842 'tools/fetch/http_session.cc',
843 'tools/fetch/http_session.h', 843 'tools/fetch/http_session.h',
844 ], 844 ],
845 }, 845 },
846 {
847 'target_name': 'hresolv',
848 'type': 'executable',
849 'dependencies': [
850 'net_base',
851 ],
852 'msvs_guid': 'FF1BAC48-D326-4CB4-96DA-8B03DE23ED6E',
853 'sources': [
854 'tools/hresolv/hresolv.cc',
855 ],
856 },
846 ], 857 ],
847 'conditions': [ 858 'conditions': [
848 ['OS=="win"', { 859 ['OS=="win"', {
849 'targets': [ 860 'targets': [
850 { 861 {
851 # TODO(port): dump_cache is still Windows-specific. 862 # TODO(port): dump_cache is still Windows-specific.
852 'target_name': 'dump_cache', 863 'target_name': 'dump_cache',
853 'type': 'executable', 864 'type': 'executable',
854 'dependencies': [ 865 'dependencies': [
855 'net', 866 'net',
(...skipping 11 matching lines...) Expand all
867 ], 878 ],
868 }], 879 }],
869 ], 880 ],
870 } 881 }
871 882
872 # Local Variables: 883 # Local Variables:
873 # tab-width:2 884 # tab-width:2
874 # indent-tabs-mode:nil 885 # indent-tabs-mode:nil
875 # End: 886 # End:
876 # vim: set expandtab tabstop=2 shiftwidth=2: 887 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | net/tools/hresolv/hresolv.cc » ('j') | net/tools/hresolv/hresolv.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698