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

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: updated gypi and comments Created 5 years, 4 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 '../net/net.gyp:net', 13 '../net/net.gyp:net',
14 'components.gyp:pref_registry',
droger 2015/08/19 10:42:29 Drop the components.gyp, just 'pref_registry',
Abhishek 2015/08/19 13:31:41 Done.
14 ], 15 ],
15 'include_dirs': [ 16 'include_dirs': [
16 '..', 17 '..',
17 ], 18 ],
18 'defines': [ 19 'defines': [
19 'PROXY_CONFIG_IMPLEMENTATION', 20 'PROXY_CONFIG_IMPLEMENTATION',
20 ], 21 ],
21 'sources': [ 22 'sources': [
23 'proxy_config/pref_proxy_config_tracker.cc',
24 'proxy_config/pref_proxy_config_tracker.h',
25 'proxy_config/pref_proxy_config_tracker_impl.cc',
26 'proxy_config/pref_proxy_config_tracker_impl.h',
22 'proxy_config/proxy_config_dictionary.cc', 27 'proxy_config/proxy_config_dictionary.cc',
23 'proxy_config/proxy_config_dictionary.h', 28 'proxy_config/proxy_config_dictionary.h',
24 'proxy_config/proxy_config_export.h', 29 'proxy_config/proxy_config_export.h',
30 'proxy_config/proxy_config_pref_names.cc',
31 'proxy_config/proxy_config_pref_names.h',
25 'proxy_config/proxy_prefs.cc', 32 'proxy_config/proxy_prefs.cc',
26 'proxy_config/proxy_prefs.h', 33 'proxy_config/proxy_prefs.h',
27 ], 34 ],
28 }, 35 },
29 ], 36 ],
30 } 37 }
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