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

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
« no previous file with comments | « net/README.md ('k') | net/net.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after
1072 'dependencies': [ 1072 'dependencies': [
1073 '../base/base.gyp:base', 1073 '../base/base.gyp:base',
1074 '../sql/sql.gyp:sql', 1074 '../sql/sql.gyp:sql',
1075 'net', 1075 'net',
1076 ], 1076 ],
1077 'sources': [ 1077 'sources': [
1078 '<@(net_extras_sources)', 1078 '<@(net_extras_sources)',
1079 ], 1079 ],
1080 }, 1080 },
1081 { 1081 {
1082 'target_name': 'net_docs',
1083 'type': 'none',
1084 'actions': [
1085 {
1086 'action_name': 'net_docs',
1087 'variables': {
1088 'net_docs_input_dir': '.',
1089 },
1090 'inputs': [
1091 '<@(net_docs_sources)',
1092 ],
1093 'outputs': [
1094 '<(net_docs_output_dir)',
1095 ],
1096 'action': [
1097 'python',
1098 '<(net_docs_script)',
1099 '--input_path',
1100 '<(net_docs_input_dir)',
1101 '--output_path',
1102 '<(net_docs_output_dir)',
1103 '<@(net_docs_sources)',
1104 ],
1105 'message': 'Rendering network stack documentation',
1106 }
1107 ],
1108 },
1109 {
1082 'target_name': 'http_server', 1110 'target_name': 'http_server',
1083 'type': 'static_library', 1111 'type': 'static_library',
1084 'variables': { 'enable_wexit_time_destructors': 1, }, 1112 'variables': { 'enable_wexit_time_destructors': 1, },
1085 'dependencies': [ 1113 'dependencies': [
1086 '../base/base.gyp:base', 1114 '../base/base.gyp:base',
1087 'net', 1115 'net',
1088 ], 1116 ],
1089 'sources': [ 1117 'sources': [
1090 'server/http_connection.cc', 1118 'server/http_connection.cc',
1091 'server/http_connection.h', 1119 'server/http_connection.h',
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
1808 '../build/isolate.gypi', 1836 '../build/isolate.gypi',
1809 ], 1837 ],
1810 'sources': [ 1838 'sources': [
1811 'net_unittests.isolate', 1839 'net_unittests.isolate',
1812 ], 1840 ],
1813 }, 1841 },
1814 ], 1842 ],
1815 }], 1843 }],
1816 ], 1844 ],
1817 } 1845 }
OLDNEW
« no previous file with comments | « net/README.md ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698