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

Unified Diff: chrome/BUILD.gn

Issue 1991573002: Remove enable_topchrome_md build flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: delete empty conditions Created 4 years, 7 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 | « build/config/ui.gni ('k') | chrome/app/theme/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 7052c70cef4ce3ff5a6850ecbca5b55526e02ed9..b2cf233ce9026295a938a30812864e77fbf7472e 100644
--- a/chrome/BUILD.gn
+++ b/chrome/BUILD.gn
@@ -630,7 +630,7 @@ if (is_win) {
sources += [ "$root_out_dir/chrome_200_percent.pak" ]
}
- if (enable_topchrome_md) {
+ if (is_mac) {
sky 2016/05/19 23:11:58 I was confused by these checks, until I understood
Evan Stade 2016/05/19 23:20:10 They're going away even on mac, so is_mac is tempo
sky 2016/05/20 16:27:54 I // TODO(estade): temporary, will remove soon, se
Evan Stade 2016/05/20 16:54:51 Done.
sources += [ "$root_out_dir/chrome_material_100_percent.pak" ]
if (enable_hidpi) {
@@ -1078,7 +1078,7 @@ group("packed_resources") {
public_deps += [ ":repack_chrome_200_percent" ]
}
- if (enable_topchrome_md) {
+ if (is_mac) {
public_deps += [ ":repack_chrome_material_100_percent" ]
if (enable_hidpi) {
@@ -1329,7 +1329,6 @@ template("chrome_repack_material_percent") {
# All sources should also have deps for completeness.
sources = [
"$root_gen_dir/chrome/theme_resources_material_${percent}_percent.pak",
- "$root_gen_dir/components/components_resources_material_${percent}_percent.pak",
]
deps = [
@@ -1354,7 +1353,7 @@ template("chrome_repack_material_percent") {
}
}
-if (enable_topchrome_md) {
+if (is_mac) {
chrome_repack_material_percent("repack_chrome_material_100_percent") {
percent = "100"
}
« no previous file with comments | « build/config/ui.gni ('k') | chrome/app/theme/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698