OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'linux_link_kerberos%': 0, | 9 'linux_link_kerberos%': 0, |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1060 'dependencies': [ | 1060 'dependencies': [ |
1061 '../base/base.gyp:base', | 1061 '../base/base.gyp:base', |
1062 '../sql/sql.gyp:sql', | 1062 '../sql/sql.gyp:sql', |
1063 'net', | 1063 'net', |
1064 ], | 1064 ], |
1065 'sources': [ | 1065 'sources': [ |
1066 '<@(net_extras_sources)', | 1066 '<@(net_extras_sources)', |
1067 ], | 1067 ], |
1068 }, | 1068 }, |
1069 { | 1069 { |
| 1070 'target_name': 'net_docs', |
| 1071 'type': 'none', |
| 1072 'actions': [ |
| 1073 { |
| 1074 'action_name': 'net_docs', |
| 1075 'variables': { |
| 1076 'net_docs_input_dir': '.', |
| 1077 }, |
| 1078 'inputs': [ |
| 1079 '<@(net_docs_sources)', |
| 1080 ], |
| 1081 'outputs': [ |
| 1082 '<(net_docs_output_dir)', |
| 1083 ], |
| 1084 'action': [ |
| 1085 'python', |
| 1086 '<(net_docs_script)', |
| 1087 '--input_path', |
| 1088 '<(net_docs_input_dir)', |
| 1089 '--output_path', |
| 1090 '<(net_docs_output_dir)', |
| 1091 '<@(net_docs_sources)', |
| 1092 ], |
| 1093 'message': 'Rendering network stack documentation', |
| 1094 } |
| 1095 ], |
| 1096 }, |
| 1097 { |
1070 'target_name': 'http_server', | 1098 'target_name': 'http_server', |
1071 'type': 'static_library', | 1099 'type': 'static_library', |
1072 'variables': { 'enable_wexit_time_destructors': 1, }, | 1100 'variables': { 'enable_wexit_time_destructors': 1, }, |
1073 'dependencies': [ | 1101 'dependencies': [ |
1074 '../base/base.gyp:base', | 1102 '../base/base.gyp:base', |
1075 'net', | 1103 'net', |
1076 ], | 1104 ], |
1077 'sources': [ | 1105 'sources': [ |
1078 'server/http_connection.cc', | 1106 'server/http_connection.cc', |
1079 'server/http_connection.h', | 1107 'server/http_connection.h', |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1766 '../build/isolate.gypi', | 1794 '../build/isolate.gypi', |
1767 ], | 1795 ], |
1768 'sources': [ | 1796 'sources': [ |
1769 'net_unittests.isolate', | 1797 'net_unittests.isolate', |
1770 ], | 1798 ], |
1771 }, | 1799 }, |
1772 ], | 1800 ], |
1773 }], | 1801 }], |
1774 ], | 1802 ], |
1775 } | 1803 } |
OLD | NEW |