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

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: Split install-build-deps.sh change into another CL; remove debugging print statement. Created 5 years, 11 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 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 'dependencies': [ 1059 'dependencies': [
1060 '../base/base.gyp:base', 1060 '../base/base.gyp:base',
1061 '../sql/sql.gyp:sql', 1061 '../sql/sql.gyp:sql',
1062 'net', 1062 'net',
1063 ], 1063 ],
1064 'sources': [ 1064 'sources': [
1065 '<@(net_extras_sources)', 1065 '<@(net_extras_sources)',
1066 ], 1066 ],
1067 }, 1067 },
1068 { 1068 {
1069 'target_name': 'net_docs',
1070 'type': 'none',
1071 'actions': [
1072 {
1073 'action_name': 'net_docs',
1074 'variables': {
1075 'net_docs_input_dir': '.',
1076 },
1077 'inputs': [
1078 '<@(net_docs_sources)',
1079 ],
1080 'outputs': [
1081 '<(net_docs_output_dir)',
1082 ],
1083 'action': [
1084 'python',
1085 '<(net_docs_script)',
1086 '--input_path',
1087 '<(net_docs_input_dir)',
1088 '--output_path',
1089 '<(net_docs_output_dir)',
1090 '<@(net_docs_sources)',
1091 ],
1092 'message': 'Rendering network stack documentation',
1093 }
1094 ],
1095 },
1096 {
1069 'target_name': 'http_server', 1097 'target_name': 'http_server',
1070 'type': 'static_library', 1098 'type': 'static_library',
1071 'variables': { 'enable_wexit_time_destructors': 1, }, 1099 'variables': { 'enable_wexit_time_destructors': 1, },
1072 'dependencies': [ 1100 'dependencies': [
1073 '../base/base.gyp:base', 1101 '../base/base.gyp:base',
1074 'net', 1102 'net',
1075 ], 1103 ],
1076 'sources': [ 1104 'sources': [
1077 'server/http_connection.cc', 1105 'server/http_connection.cc',
1078 'server/http_connection.h', 1106 'server/http_connection.h',
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
1749 '../build/isolate.gypi', 1777 '../build/isolate.gypi',
1750 ], 1778 ],
1751 'sources': [ 1779 'sources': [
1752 'net_unittests.isolate', 1780 'net_unittests.isolate',
1753 ], 1781 ],
1754 }, 1782 },
1755 ], 1783 ],
1756 }], 1784 }],
1757 ], 1785 ],
1758 } 1786 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698