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 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1073 'dependencies': [ | 1073 'dependencies': [ |
1074 '../base/base.gyp:base', | 1074 '../base/base.gyp:base', |
1075 '../sql/sql.gyp:sql', | 1075 '../sql/sql.gyp:sql', |
1076 'net', | 1076 'net', |
1077 ], | 1077 ], |
1078 'sources': [ | 1078 'sources': [ |
1079 '<@(net_extras_sources)', | 1079 '<@(net_extras_sources)', |
1080 ], | 1080 ], |
1081 }, | 1081 }, |
1082 { | 1082 { |
| 1083 'target_name': 'net_docs', |
| 1084 'type': 'none', |
| 1085 'actions': [ |
| 1086 { |
| 1087 'action_name': 'net_docs', |
| 1088 'variables': { |
| 1089 'net_docs_input_dir': '.', |
| 1090 }, |
| 1091 'inputs': [ |
| 1092 '<@(net_docs_sources)', |
| 1093 ], |
| 1094 'outputs': [ |
| 1095 '<(net_docs_output_dir)', |
| 1096 ], |
| 1097 'action': [ |
| 1098 'python', |
| 1099 '<(net_docs_script)', |
| 1100 '--input_path', |
| 1101 '<(net_docs_input_dir)', |
| 1102 '--output_path', |
| 1103 '<(net_docs_output_dir)', |
| 1104 '<@(net_docs_sources)', |
| 1105 ], |
| 1106 'message': 'Rendering network stack documentation', |
| 1107 } |
| 1108 ], |
| 1109 }, |
| 1110 { |
1083 'target_name': 'http_server', | 1111 'target_name': 'http_server', |
1084 'type': 'static_library', | 1112 'type': 'static_library', |
1085 'variables': { 'enable_wexit_time_destructors': 1, }, | 1113 'variables': { 'enable_wexit_time_destructors': 1, }, |
1086 'dependencies': [ | 1114 'dependencies': [ |
1087 '../base/base.gyp:base', | 1115 '../base/base.gyp:base', |
1088 'net', | 1116 'net', |
1089 ], | 1117 ], |
1090 'sources': [ | 1118 'sources': [ |
1091 'server/http_connection.cc', | 1119 'server/http_connection.cc', |
1092 'server/http_connection.h', | 1120 'server/http_connection.h', |
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1809 '../build/isolate.gypi', | 1837 '../build/isolate.gypi', |
1810 ], | 1838 ], |
1811 'sources': [ | 1839 'sources': [ |
1812 'net_unittests.isolate', | 1840 'net_unittests.isolate', |
1813 ], | 1841 ], |
1814 }, | 1842 }, |
1815 ], | 1843 ], |
1816 }], | 1844 }], |
1817 ], | 1845 ], |
1818 } | 1846 } |
OLD | NEW |