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

Unified Diff: chrome/BUILD.gn

Issue 2769483002: Don't check is_ios in chrome/, it's always false there. (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | chrome/app/resources/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/BUILD.gn
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
index a4f5e2cdbf98273fb0d87e57f2298fa75a515d29..c12de85edf504d17e548f4c329ea0315699bc231 100644
--- a/chrome/BUILD.gn
+++ b/chrome/BUILD.gn
@@ -36,6 +36,8 @@ if (is_android) {
import("//third_party/icu/config.gni")
}
+assert(!is_ios, "Chromium/iOS shouldn't use anything in //chrome")
+
if (enable_resource_whitelist_generation) {
chrome_resource_whitelist = "$target_gen_dir/chrome_resource_whitelist.txt"
}
@@ -1415,7 +1417,7 @@ group("extra_resources") {
"//chrome/browser/resources:webapks_ui_resources",
]
- if (!is_android && !is_ios) {
+ if (!is_android) {
public_deps += [
"//chrome/browser/resources:component_extension_resources",
"//chrome/browser/resources:options_resources",
« no previous file with comments | « no previous file | chrome/app/resources/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698