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

Side by Side Diff: net/net.gyp

Issue 900433003: Add Mojo interfaces for out-of-process proxy resolver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove LoadState enum. 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/interfaces/proxy_resolver_service.mojom ('k') | no next file » | 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 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after
1196 'proxy/proxy_resolver_v8_tracing.cc', 1196 'proxy/proxy_resolver_v8_tracing.cc',
1197 'proxy/proxy_resolver_v8_tracing.h', 1197 'proxy/proxy_resolver_v8_tracing.h',
1198 'proxy/proxy_service_v8.cc', 1198 'proxy/proxy_service_v8.cc',
1199 'proxy/proxy_service_v8.h', 1199 'proxy/proxy_service_v8.h',
1200 ], 1200 ],
1201 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1201 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1202 'msvs_disabled_warnings': [4267, ], 1202 'msvs_disabled_warnings': [4267, ],
1203 }, 1203 },
1204 ], 1204 ],
1205 }], 1205 }],
1206 ['use_v8_in_net == 1 and OS != "android"', {
1207 'targets': [
1208 {
1209 # GN version: //net/interfaces
1210 'target_name': 'net_interfaces',
1211 'type': 'static_library',
1212 'sources': [
1213 'interfaces/host_resolver_service.mojom',
1214 'interfaces/proxy_resolver_service.mojom',
1215 ],
1216 'includes': [
1217 '../third_party/mojo/mojom_bindings_generator.gypi',
1218 ],
1219 },
1220 ],
1221 }],
1206 ['OS != "ios" and OS != "android"', { 1222 ['OS != "ios" and OS != "android"', {
1207 'targets': [ 1223 'targets': [
1208 # iOS doesn't have the concept of simple executables, these targets 1224 # iOS doesn't have the concept of simple executables, these targets
1209 # can't be compiled on the platform. 1225 # can't be compiled on the platform.
1210 { 1226 {
1211 'target_name': 'crash_cache', 1227 'target_name': 'crash_cache',
1212 'type': 'executable', 1228 'type': 'executable',
1213 'dependencies': [ 1229 'dependencies': [
1214 '../base/base.gyp:base', 1230 '../base/base.gyp:base',
1215 'net', 1231 'net',
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
1749 '../build/isolate.gypi', 1765 '../build/isolate.gypi',
1750 ], 1766 ],
1751 'sources': [ 1767 'sources': [
1752 'net_unittests.isolate', 1768 'net_unittests.isolate',
1753 ], 1769 ],
1754 }, 1770 },
1755 ], 1771 ],
1756 }], 1772 }],
1757 ], 1773 ],
1758 } 1774 }
OLDNEW
« no previous file with comments | « net/interfaces/proxy_resolver_service.mojom ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698