| Index: components/crash/app/BUILD.gn
|
| diff --git a/components/crash/app/BUILD.gn b/components/crash/app/BUILD.gn
|
| index 5292c1a87f3f8d0b5bf6ba475972c2c0e04753b0..6848a076167e7b6b76d411f315f54540da6a7b4f 100644
|
| --- a/components/crash/app/BUILD.gn
|
| +++ b/components/crash/app/BUILD.gn
|
| @@ -50,6 +50,10 @@ source_set("app") {
|
| ":lib",
|
| ]
|
|
|
| + if (is_android) {
|
| + defines += [ "CHROME_BUILD_ID=" + android_chrome_build_id ]
|
| + }
|
| +
|
| if (is_mac) {
|
| deps += [ "//breakpad" ]
|
| } else if (is_win) {
|
| @@ -58,8 +62,7 @@ source_set("app") {
|
| "//breakpad:breakpad_handler",
|
| #'../breakpad/breakpad.gyp:breakpad_sender', TODO(GYP)
|
| ]
|
| - } else if (is_posix && !is_ios &&
|
| - (!is_android || !is_android_webview_build)) {
|
| + } else if (is_posix && !is_ios && (!is_android || !is_android_webview_build)) {
|
| deps += [ "//breakpad:client" ]
|
| }
|
| }
|
|
|