| Index: chrome/BUILD.gn
|
| diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
|
| index ea2dee46048afa507f24f1814dd96405a150c940..d3e035215994256a2451d285b9577ecf1d8ba987 100644
|
| --- a/chrome/BUILD.gn
|
| +++ b/chrome/BUILD.gn
|
| @@ -630,7 +630,9 @@ if (is_win) {
|
| sources += [ "$root_out_dir/chrome_200_percent.pak" ]
|
| }
|
|
|
| - if (enable_topchrome_md) {
|
| + # TODO(estade): remove material design specific resources.
|
| + # See crbug.com/613593
|
| + if (is_mac) {
|
| sources += [ "$root_out_dir/chrome_material_100_percent.pak" ]
|
|
|
| if (enable_hidpi) {
|
| @@ -1078,7 +1080,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) {
|
| @@ -1334,7 +1336,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 = [
|
| @@ -1359,7 +1360,7 @@ template("chrome_repack_material_percent") {
|
| }
|
| }
|
|
|
| -if (enable_topchrome_md) {
|
| +if (is_mac) {
|
| chrome_repack_material_percent("repack_chrome_material_100_percent") {
|
| percent = "100"
|
| }
|
|
|