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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/README.md ('k') | net/net.gypi » ('j') | net/tools/net_docs/net_docs.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index 0fdc518e92c6a70e0772e1e7009ae0f9c428bcf1..914521285876a2e424e75d206936eb981641a90b 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -1080,6 +1080,34 @@
],
},
{
+ 'target_name': 'net_docs',
+ 'type': 'none',
+ 'actions': [
+ {
+ 'action_name': 'net_docs',
+ 'variables': {
+ 'net_docs_input_dir': '.',
+ },
+ 'inputs': [
+ '<@(net_docs_sources)',
+ ],
+ 'outputs': [
+ '<(net_docs_output_dir)',
+ ],
+ 'action': [
+ 'python',
+ '<(net_docs_script)',
+ '--input_path',
+ '<(net_docs_input_dir)',
+ '--output_path',
+ '<(net_docs_output_dir)',
+ '<@(net_docs_sources)',
+ ],
+ 'message': 'Rendering network stack documentation',
+ }
+ ],
+ },
+ {
'target_name': 'http_server',
'type': 'static_library',
'variables': { 'enable_wexit_time_destructors': 1, },
« 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