Index: breakpad/BUILD.gn |
diff --git a/breakpad/BUILD.gn b/breakpad/BUILD.gn |
index 899cfef080e317485b3394c2b42d64f2c7e3408e..5f7ebe01801e3563c44ea993760693552422235f 100644 |
--- a/breakpad/BUILD.gn |
+++ b/breakpad/BUILD.gn |
@@ -305,7 +305,7 @@ if (is_mac) { |
} |
} |
-if (is_linux || is_android) { |
+if (is_linux) { |
executable("symupload") { |
sources = [ |
"src/tools/linux/symupload/sym_upload.cc", |
@@ -324,7 +324,7 @@ if (is_linux || is_android) { |
} |
} |
-if (is_linux) { |
+if (is_linux || is_android) { |
if (current_toolchain == host_toolchain) { |
# dump_syms is a host tool, so only compile it for the host system. |
executable("dump_syms") { |
@@ -479,7 +479,9 @@ if (is_linux) { |
".", |
] |
} |
+} |
+if (is_linux) { |
test("breakpad_unittests") { |
sources = [ |
"linux/breakpad_googletest_includes.h", |
@@ -537,7 +539,7 @@ if (is_linux) { |
if (is_android) { |
sources += [ "src/common/android/breakpad_getcontext_unittest.cc" ] |
libs = [ "log" ] |
- include_dirs = [ "src/common/android/include" ] |
+ include_dirs += [ "src/common/android/include" ] |
} |
} |