Chromium Code Reviews| Index: chrome/common/BUILD.gn |
| diff --git a/chrome/common/BUILD.gn b/chrome/common/BUILD.gn |
| index c156b3ae12d19e0e6149417e72cf5d352c11fa95..bb0fbc262d322aaa9bd5d3a4c4849a9041a19258 100644 |
| --- a/chrome/common/BUILD.gn |
| +++ b/chrome/common/BUILD.gn |
| @@ -302,6 +302,8 @@ static_library("constants") { |
| sources = [ |
| "chrome_constants.cc", |
| "chrome_constants.h", |
| + "chrome_constants_util_win.cc", |
| + "chrome_constants_util_win.h", |
| "chrome_features.cc", |
| "chrome_features.h", |
| "chrome_icon_resources_win.cc", |
| @@ -349,6 +351,8 @@ static_library("constants") { |
| # on this target. On that platform one of the Chrome paths forwards to one |
| # implemented in //ui/base, so we need that dependency. |
| deps += [ "//ui/base" ] |
| + } else if (is_win) { |
| + deps += [ ":installer_util" ] |
|
grt (UTC plus 2)
2016/03/08 15:44:47
circular dependency: is this okay?
|
| } |
| } |