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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/proxy_config.gypi ('k') | components/proxy_config/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proxy_config/BUILD.gn
diff --git a/components/proxy_config/BUILD.gn b/components/proxy_config/BUILD.gn
index 439fd305351699aaa8c4265afc7bee1e2adbbd6c..9629d2e9e865c7b7e3e337fb529f85ee17275f53 100644
--- a/components/proxy_config/BUILD.gn
+++ b/components/proxy_config/BUILD.gn
@@ -2,20 +2,30 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-# GYP version: components/proxy_config.gypi:proxy_config_component
+# GYP version: components/proxy_config.gypi:proxy_config
component("proxy_config") {
sources = [
+ "pref_proxy_config_tracker.cc",
+ "pref_proxy_config_tracker.h",
+ "pref_proxy_config_tracker_impl.cc",
+ "pref_proxy_config_tracker_impl.h",
"proxy_config_dictionary.cc",
"proxy_config_dictionary.h",
"proxy_config_export.h",
+ "proxy_config_pref_names.cc",
+ "proxy_config_pref_names.h",
"proxy_prefs.cc",
"proxy_prefs.h",
]
+ configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
+
defines = [ "PROXY_CONFIG_IMPLEMENTATION" ]
deps = [
"//base",
+ "//base:prefs",
"//net",
+ "//url",
]
}
« 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