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

Side by Side Diff: net/net.gyp

Issue 868843002: net docs: Barebones doc renderer and net_docs target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make requested changes Created 5 years, 10 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
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « net/README.md ('k') | net/net.gypi » ('j') | net/tools/net_docs/net_docs.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698