| Index: blimp/engine/BUILD.gn
|
| diff --git a/blimp/engine/BUILD.gn b/blimp/engine/BUILD.gn
|
| index 9abf44690ffc4f682dd0313da9ab2e6dc0ce1cb4..5841c86ad43837727461eb11231b4e5ddb8dd693 100644
|
| --- a/blimp/engine/BUILD.gn
|
| +++ b/blimp/engine/BUILD.gn
|
| @@ -560,9 +560,10 @@ if (is_linux) {
|
| ]
|
| }
|
|
|
| - # Creates a breakpad symbol file for the engine. This takes a long time so
|
| - # it should only be done as part of the official build.
|
| + # Crash symbols should only be created and uploaded from official builders.
|
| if (is_official_build) {
|
| + # Action to create a Breakpad symbol file for the Engine. This can take
|
| + # a long time.
|
| action("blimp_symbols") {
|
| script = "//build/linux/dump_app_syms.py"
|
|
|
| @@ -588,8 +589,11 @@ if (is_linux) {
|
| rebase_path(symbol_file, root_build_dir),
|
| ]
|
|
|
| + # Include symupload target here as it is needed by the buildbots to upload
|
| + # the symbol file created by dump_syms.
|
| deps = [
|
| ":blimp_engine_app",
|
| + "//breakpad:symupload",
|
| dump_syms_label,
|
| ]
|
| }
|
|
|