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

Unified Diff: chrome/browser/resources/BUILD.gn

Issue 2927273002: Move code for old, deprecated Options UI to only ChromeOS (Closed)
Patch Set: font utils Created 3 years, 6 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/browser/resources/BUILD.gn
diff --git a/chrome/browser/resources/BUILD.gn b/chrome/browser/resources/BUILD.gn
index 16864c459a9671a54fc1964d21aebbbed5c6d8a7..8b7e890e3d6a1d2fc4cf36c49b0448c1c68a2d32 100644
--- a/chrome/browser/resources/BUILD.gn
+++ b/chrome/browser/resources/BUILD.gn
@@ -106,14 +106,16 @@ if (!is_android) {
output_dir = "$root_gen_dir/chrome"
}
- grit("options_resources") {
- source = "options_resources.grd"
- defines = chrome_grit_defines
- outputs = [
- "grit/options_resources.h",
- "options_resources.pak",
- ]
- output_dir = "$root_gen_dir/chrome"
+ if (is_chromeos) {
Lei Zhang 2017/06/09 04:22:53 Move out of if (!is_android), i.e. no need for nes
Dan Beam 2017/06/09 06:32:55 Done.
+ grit("options_resources") {
+ source = "options_resources.grd"
+ defines = chrome_grit_defines
+ outputs = [
+ "grit/options_resources.h",
+ "options_resources.pak",
+ ]
+ output_dir = "$root_gen_dir/chrome"
+ }
}
grit("settings_resources") {

Powered by Google App Engine
This is Rietveld 408576698