| Index: tools/grit/grit_rule.gni
|
| diff --git a/tools/grit/grit_rule.gni b/tools/grit/grit_rule.gni
|
| index eab19564c1f2da85397b17c93305660e768585c0..d437ee102fd43074953846557af737dec067a831 100644
|
| --- a/tools/grit/grit_rule.gni
|
| +++ b/tools/grit/grit_rule.gni
|
| @@ -249,10 +249,16 @@ _js_minifier = "//third_party/closure_compiler/js_minify.py"
|
| grit_resource_id_file = "//tools/gritsettings/resource_ids"
|
| grit_info_script = "//tools/grit/grit_info.py"
|
|
|
| +# TODO(asvitkine): Add predetermined ids files for other platforms.
|
| grit_predetermined_resource_ids_file = ""
|
| -
|
| -# TODO(asvitkine): Add platform-specific resource id file paths here.
|
| -# http://crbug.com/692670
|
| +if (is_mac) {
|
| + grit_predetermined_resource_ids_file =
|
| + "//tools/gritsettings/startup_resources_mac.txt"
|
| +}
|
| +if (is_win) {
|
| + grit_predetermined_resource_ids_file =
|
| + "//tools/gritsettings/startup_resources_win.txt"
|
| +}
|
|
|
| template("grit") {
|
| assert(defined(invoker.source),
|
|
|