Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: breakpad/BUILD.gn

Issue 561623002: GN: Enable blink and (nearly) all of content in android build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | build/config/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" ]
}
}
« no previous file with comments | « BUILD.gn ('k') | build/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698