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

Side by Side Diff: components/proxy_config.gypi

Issue 1296663003: Componentize proxy code from chrome/browser/net (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updating for win p/f Created 5 years, 3 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 | « chrome/test/base/testing_profile.cc ('k') | components/proxy_config/BUILD.gn » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/proxy_config 8 # GN version: //components/proxy_config
9 'target_name': 'proxy_config', 9 'target_name': 'proxy_config',
10 'type': '<(component)', 10 'type': '<(component)',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../base/base.gyp:base_prefs',
13 '../net/net.gyp:net', 14 '../net/net.gyp:net',
15 '../url/url.gyp:url_lib',
16 'pref_registry',
14 ], 17 ],
15 'include_dirs': [ 18 'include_dirs': [
16 '..', 19 '..',
17 ], 20 ],
21 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
22 'msvs_disabled_warnings': [ 4267, ],
18 'defines': [ 23 'defines': [
19 'PROXY_CONFIG_IMPLEMENTATION', 24 'PROXY_CONFIG_IMPLEMENTATION',
20 ], 25 ],
21 'sources': [ 26 'sources': [
27 'proxy_config/pref_proxy_config_tracker.cc',
28 'proxy_config/pref_proxy_config_tracker.h',
29 'proxy_config/pref_proxy_config_tracker_impl.cc',
30 'proxy_config/pref_proxy_config_tracker_impl.h',
22 'proxy_config/proxy_config_dictionary.cc', 31 'proxy_config/proxy_config_dictionary.cc',
23 'proxy_config/proxy_config_dictionary.h', 32 'proxy_config/proxy_config_dictionary.h',
24 'proxy_config/proxy_config_export.h', 33 'proxy_config/proxy_config_export.h',
34 'proxy_config/proxy_config_pref_names.cc',
35 'proxy_config/proxy_config_pref_names.h',
25 'proxy_config/proxy_prefs.cc', 36 'proxy_config/proxy_prefs.cc',
26 'proxy_config/proxy_prefs.h', 37 'proxy_config/proxy_prefs.h',
27 ], 38 ],
28 }, 39 },
29 ], 40 ],
30 } 41 }
OLDNEW
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | components/proxy_config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698