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

Side by Side Diff: net/net.gyp

Issue 862813002: WIP: Prototype OOP V8 PAC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Slight cleanup and report JS memory usage. 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/dns/host_resolver_mojo_host.cc ('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 1173 matching lines...) Expand 10 before | Expand all | Expand 10 after
1184 '../base/base.gyp:base', 1184 '../base/base.gyp:base',
1185 '../gin/gin.gyp:gin', 1185 '../gin/gin.gyp:gin',
1186 '../url/url.gyp:url_lib', 1186 '../url/url.gyp:url_lib',
1187 '../v8/tools/gyp/v8.gyp:v8', 1187 '../v8/tools/gyp/v8.gyp:v8',
1188 'net' 1188 'net'
1189 ], 1189 ],
1190 'defines': [ 1190 'defines': [
1191 'NET_IMPLEMENTATION', 1191 'NET_IMPLEMENTATION',
1192 ], 1192 ],
1193 'sources': [ 1193 'sources': [
1194 'proxy/proxy_resolver.mojom',
1195 'proxy/proxy_resolver_mojo.cc',
1196 'proxy/proxy_resolver_mojo.h',
1197 'proxy/proxy_resolver_mojo_host.cc',
1198 'proxy/proxy_resolver_mojo_host.h',
1194 'proxy/proxy_resolver_v8.cc', 1199 'proxy/proxy_resolver_v8.cc',
1195 'proxy/proxy_resolver_v8.h', 1200 'proxy/proxy_resolver_v8.h',
1196 'proxy/proxy_resolver_v8_tracing.cc', 1201 'proxy/proxy_resolver_v8_tracing.cc',
1197 'proxy/proxy_resolver_v8_tracing.h', 1202 'proxy/proxy_resolver_v8_tracing.h',
1198 'proxy/proxy_service_v8.cc', 1203 'proxy/proxy_service_v8.cc',
1199 'proxy/proxy_service_v8.h', 1204 'proxy/proxy_service_v8.h',
1200 ], 1205 ],
1206 'includes': [
1207 '../mojo/mojom_bindings_generator.gypi',
1208 ],
1201 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1209 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1202 'msvs_disabled_warnings': [4267, ], 1210 'msvs_disabled_warnings': [4267, ],
1203 }, 1211 },
1204 ], 1212 ],
1205 }], 1213 }],
1206 ['OS != "ios" and OS != "android"', { 1214 ['OS != "ios" and OS != "android"', {
1207 'targets': [ 1215 'targets': [
1208 # iOS doesn't have the concept of simple executables, these targets 1216 # iOS doesn't have the concept of simple executables, these targets
1209 # can't be compiled on the platform. 1217 # can't be compiled on the platform.
1210 { 1218 {
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
1749 '../build/isolate.gypi', 1757 '../build/isolate.gypi',
1750 ], 1758 ],
1751 'sources': [ 1759 'sources': [
1752 'net_unittests.isolate', 1760 'net_unittests.isolate',
1753 ], 1761 ],
1754 }, 1762 },
1755 ], 1763 ],
1756 }], 1764 }],
1757 ], 1765 ],
1758 } 1766 }
OLDNEW
« no previous file with comments | « net/dns/host_resolver_mojo_host.cc ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698