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

Unified Diff: chrome/common/BUILD.gn

Issue 1630923002: Remove PRODUCT_STRING_PATH from chrome_constants.h on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@c2_rm_PSP_profile_resetter
Patch Set: merge up to r379824 Created 4 years, 9 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
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?
}
}

Powered by Google App Engine
This is Rietveld 408576698