aboutsummaryrefslogtreecommitdiff
path: root/src/client/linux
diff options
context:
space:
mode:
authorMike Frysinger <vapier@chromium.org>2017-09-13 17:33:25 -0400
committerMike Frysinger <vapier@chromium.org>2017-09-13 23:38:29 +0000
commit6a4976483b1d5892905618254af65afa7d8baa83 (patch)
tree28a0e121e6a376f9811f259e59bed35af916249c /src/client/linux
parentgoogle_crashdump_uploader_test: integrate test into normal build (diff)
downloadbreakpad-6a4976483b1d5892905618254af65afa7d8baa83.tar.xz
drop bundled gflags from the checkout
The only code using gflags is google_crash_report_sender, and nothing builds or tests that code currently. Switch it over to using system versions of gflags so we can drop the local prebuilts. Tested local builds by hand of the tool. Bug: google-breakpad:360 Change-Id: I75d79b176468c948773079a54d87e70709feaf87 Reviewed-on: https://chromium-review.googlesource.com/665799 Reviewed-by: Mark Mentovai <mark@chromium.org>
Diffstat (limited to 'src/client/linux')
-rw-r--r--src/client/linux/sender/google_crash_report_sender.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/linux/sender/google_crash_report_sender.cc b/src/client/linux/sender/google_crash_report_sender.cc
index ec6c06e8..f83a0e89 100644
--- a/src/client/linux/sender/google_crash_report_sender.cc
+++ b/src/client/linux/sender/google_crash_report_sender.cc
@@ -28,9 +28,10 @@
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "common/linux/google_crashdump_uploader.h"
-#include "third_party/linux/include/gflags/gflags.h"
#include <string>
#include <iostream>
+#include <gflags/gflags.h>
+#include <glog/logging.h>
#include "common/using_std_string.h"