Index: components/variations/net/BUILD.gn |
diff --git a/components/url_fixer/BUILD.gn b/components/variations/net/BUILD.gn |
similarity index 50% |
copy from components/url_fixer/BUILD.gn |
copy to components/variations/net/BUILD.gn |
index bf29f3523db140fc16138ccf95cf596d7fcbdd4e..e35f5a8445a4d99c02f5d5511a399e67e27599bd 100644 |
--- a/components/url_fixer/BUILD.gn |
+++ b/components/variations/net/BUILD.gn |
@@ -2,19 +2,17 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-static_library("url_fixer") { |
+source_set("net") { |
sources = [ |
- "url_fixer.cc", |
- "url_fixer.h", |
+ "variations_http_header_provider.cc", |
+ "variations_http_header_provider.h", |
] |
+ public_deps = [ "//components/variations" ] |
deps = [ |
"//base", |
+ "//components/google/core/browser", |
+ "//components/variations/proto", |
"//net", |
] |
- |
- if (is_win) { |
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
- cflags = [ "/wd4267" ] |
- } |
} |