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

Side by Side Diff: components/proxy_config/BUILD.gn

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 | « components/proxy_config.gypi ('k') | components/proxy_config/DEPS » ('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 # GYP version: components/proxy_config.gypi:proxy_config_component 5 # GYP version: components/proxy_config.gypi:proxy_config
6 component("proxy_config") { 6 component("proxy_config") {
7 sources = [ 7 sources = [
8 "pref_proxy_config_tracker.cc",
9 "pref_proxy_config_tracker.h",
10 "pref_proxy_config_tracker_impl.cc",
11 "pref_proxy_config_tracker_impl.h",
8 "proxy_config_dictionary.cc", 12 "proxy_config_dictionary.cc",
9 "proxy_config_dictionary.h", 13 "proxy_config_dictionary.h",
10 "proxy_config_export.h", 14 "proxy_config_export.h",
15 "proxy_config_pref_names.cc",
16 "proxy_config_pref_names.h",
11 "proxy_prefs.cc", 17 "proxy_prefs.cc",
12 "proxy_prefs.h", 18 "proxy_prefs.h",
13 ] 19 ]
14 20
21 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
22
15 defines = [ "PROXY_CONFIG_IMPLEMENTATION" ] 23 defines = [ "PROXY_CONFIG_IMPLEMENTATION" ]
16 24
17 deps = [ 25 deps = [
18 "//base", 26 "//base",
27 "//base:prefs",
19 "//net", 28 "//net",
29 "//url",
20 ] 30 ]
21 } 31 }
OLDNEW
« no previous file with comments | « components/proxy_config.gypi ('k') | components/proxy_config/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698