OLD | NEW |
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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
980 'tools/fetch/http_listen_socket.h', | 980 'tools/fetch/http_listen_socket.h', |
981 'tools/fetch/http_server.cc', | 981 'tools/fetch/http_server.cc', |
982 'tools/fetch/http_server.h', | 982 'tools/fetch/http_server.h', |
983 'tools/fetch/http_server_request_info.h', | 983 'tools/fetch/http_server_request_info.h', |
984 'tools/fetch/http_server_response_info.h', | 984 'tools/fetch/http_server_response_info.h', |
985 'tools/fetch/http_session.cc', | 985 'tools/fetch/http_session.cc', |
986 'tools/fetch/http_session.h', | 986 'tools/fetch/http_session.h', |
987 ], | 987 ], |
988 }, | 988 }, |
989 { | 989 { |
| 990 'target_name': 'http_listen_socket', |
| 991 'type': '<(library)', |
| 992 'dependencies': [ |
| 993 'net', |
| 994 '../base/base.gyp:base', |
| 995 '../testing/gtest.gyp:gtest', |
| 996 ], |
| 997 'msvs_guid': 'FCB894A4-CC6C-48C2-B495-52C80527E9BE', |
| 998 'sources': [ |
| 999 'server/http_listen_socket.cc', |
| 1000 'server/http_listen_socket.h', |
| 1001 'server/http_server_request_info.h', |
| 1002 ], |
| 1003 }, |
| 1004 { |
990 'target_name': 'hresolv', | 1005 'target_name': 'hresolv', |
991 'type': 'executable', | 1006 'type': 'executable', |
992 'dependencies': [ | 1007 'dependencies': [ |
993 'net_base', | 1008 'net_base', |
994 ], | 1009 ], |
995 'msvs_guid': 'FF1BAC48-D326-4CB4-96DA-8B03DE23ED6E', | 1010 'msvs_guid': 'FF1BAC48-D326-4CB4-96DA-8B03DE23ED6E', |
996 'sources': [ | 1011 'sources': [ |
997 'tools/hresolv/hresolv.cc', | 1012 'tools/hresolv/hresolv.cc', |
998 ], | 1013 ], |
999 }, | 1014 }, |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1073 ], | 1088 ], |
1074 }], | 1089 }], |
1075 ], | 1090 ], |
1076 } | 1091 } |
1077 | 1092 |
1078 # Local Variables: | 1093 # Local Variables: |
1079 # tab-width:2 | 1094 # tab-width:2 |
1080 # indent-tabs-mode:nil | 1095 # indent-tabs-mode:nil |
1081 # End: | 1096 # End: |
1082 # vim: set expandtab tabstop=2 shiftwidth=2: | 1097 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |