Chromium Code Reviews| Index: components/variations/net/BUILD.gn |
| diff --git a/components/url_fixer/BUILD.gn b/components/variations/net/BUILD.gn |
| similarity index 51% |
| copy from components/url_fixer/BUILD.gn |
| copy to components/variations/net/BUILD.gn |
| index bf29f3523db140fc16138ccf95cf596d7fcbdd4e..59060076ba3842b26fc6d357cbe9e80b317c51f0 100644 |
| --- a/components/url_fixer/BUILD.gn |
| +++ b/components/variations/net/BUILD.gn |
| @@ -2,19 +2,18 @@ |
| # 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("variations_http_provider") { |
| sources = [ |
| - "url_fixer.cc", |
| - "url_fixer.h", |
| + "variations_http_header_provider.cc", |
| + "variations_http_header_provider.h", |
| ] |
| + public_deps = [ |
| + "//components/variations", |
| + ] |
| deps = [ |
| "//base", |
| + "//components/variations/proto", |
|
Alexei Svitkine (slow)
2014/10/22 14:04:26
Shouldn't this also depend on //components/google_
Ilya Sherman
2014/10/22 23:57:43
Good catch! Done. (I wish the build would actual
|
| "//net", |
| ] |
| - |
| - if (is_win) { |
| - # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| - cflags = [ "/wd4267" ] |
| - } |
| } |