summaryrefslogtreecommitdiffstats
path: root/win8
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-12-28 22:51:47 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-29 06:52:32 +0000
commite26e6d0a79391734160024bba2955353760c5020 (patch)
tree6c4c9ece8af3c0202ddb1839651b743a5c5221f7 /win8
parent2d06d8be21b5d0730628e3189059d54754501405 (diff)
downloadchromium_src-e26e6d0a79391734160024bba2955353760c5020.zip
chromium_src-e26e6d0a79391734160024bba2955353760c5020.tar.gz
chromium_src-e26e6d0a79391734160024bba2955353760c5020.tar.bz2
Use .rc strings in fewer places for installer util.
The resource strings are needed only for the setup app and unit tests. Previously they were also linked into Chrome. This clarifies the usage and renames the targets to force you to pick (previously the naming encouraged you to link to the strings, which is probably not correct for most cases. Review URL: https://codereview.chromium.org/1545803002 Cr-Commit-Position: refs/heads/master@{#367057}
Diffstat (limited to 'win8')
-rw-r--r--win8/delegate_execute/BUILD.gn2
-rw-r--r--win8/metro_driver/BUILD.gn4
2 files changed, 3 insertions, 3 deletions
diff --git a/win8/delegate_execute/BUILD.gn b/win8/delegate_execute/BUILD.gn
index d21d73c..8309dc6 100644
--- a/win8/delegate_execute/BUILD.gn
+++ b/win8/delegate_execute/BUILD.gn
@@ -44,7 +44,7 @@ source_set("lib") {
"//base",
"//breakpad:breakpad_handler",
"//chrome/common:constants",
- "//chrome/installer/util:with_no_strings_some_things_wont_work",
+ "//chrome/installer/util:with_no_strings",
"//ui/base",
"//ui/gfx",
"//ui/gfx/geometry",
diff --git a/win8/metro_driver/BUILD.gn b/win8/metro_driver/BUILD.gn
index 2cf2dd9..68c9a90 100644
--- a/win8/metro_driver/BUILD.gn
+++ b/win8/metro_driver/BUILD.gn
@@ -23,7 +23,7 @@ shared_library("metro_driver") {
":version_resources",
"//base",
"//chrome/common:constants",
- "//chrome/installer/util:with_no_strings_some_things_wont_work",
+ "//chrome/installer/util:with_no_strings",
"//crypto",
"//ipc",
"//sandbox",
@@ -122,7 +122,7 @@ test("metro_driver_unittests") {
deps = [
":metro_driver",
"//base",
- "//chrome/installer/util",
+ "//chrome/installer/util:with_rc_strings",
"//testing/gtest",
]
}