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

Side by Side Diff: shell/crash/BUILD.gn

Issue 1227333002: Add breakpad support to mojo shell apk. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Follow review Created 5 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 if (is_android) {
6 import("//build/config/android/config.gni")
7 }
8
9 source_set("crash") {
10 sources = []
11
12 if (is_android) {
13 libs = [ "log" ]
14 }
15
16 if (is_android || is_linux) {
17 # Want these files on both Linux and Android.
viettrungluu 2015/07/27 20:28:35 I think you should just go ahead and call these fi
qsr 2015/07/28 08:46:22 Done.
18 set_sources_assignment_filter([])
19 sources += [
20 "breakpad_linux.cc",
21 "breakpad_linux.h",
22 ]
23 }
24
25 deps = [
26 "//base",
27 "//third_party/breakpad:client",
28 ]
29 }
OLDNEW
« no previous file with comments | « shell/android/main.cc ('k') | shell/crash/DEPS » ('j') | shell/crash/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698