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

Side by Side Diff: shell/BUILD.gn

Issue 1227333002: Add breakpad support to mojo shell apk. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Reuse chromium breakpad infrastructure. Created 5 years, 5 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo.gni") 6 import("//mojo/public/mojo.gni")
7 import("//mojo/public/mojo_application.gni") 7 import("//mojo/public/mojo_application.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//mojo/tools/embed/rules.gni") 9 import("//mojo/tools/embed/rules.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 28 matching lines...) Expand all
39 } 39 }
40 40
41 if (is_android) { 41 if (is_android) {
42 import("//build/config/android/config.gni") 42 import("//build/config/android/config.gni")
43 import("//build/config/android/rules.gni") 43 import("//build/config/android/rules.gni")
44 } 44 }
45 45
46 if (!mojo_use_prebuilt_mojo_shell) { 46 if (!mojo_use_prebuilt_mojo_shell) {
47 shell_common_deps = [ 47 shell_common_deps = [
48 ":parent_lib", 48 ":parent_lib",
49 "crash:app",
49 "//base", 50 "//base",
50 "//base/allocator", 51 "//base/allocator",
51 "//build/config/sanitizers:deps", 52 "//build/config/sanitizers:deps",
52 "//mojo/common", 53 "//mojo/common",
53 "//mojo/environment:chromium", 54 "//mojo/environment:chromium",
54 ] 55 ]
55 shell_common_data_deps = [ ":mojo_shell_child" ] 56 shell_common_data_deps = [ ":mojo_shell_child" ]
56 57
57 if (is_android) { 58 if (is_android) {
58 shared_library("mojo_shell") { 59 shared_library("mojo_shell") {
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 "//mojo/application", 545 "//mojo/application",
545 "//mojo/application:test_support", 546 "//mojo/application:test_support",
546 "//mojo/common:common", 547 "//mojo/common:common",
547 "//mojo/public/cpp/bindings:callback", 548 "//mojo/public/cpp/bindings:callback",
548 "//mojo/public/cpp/environment", 549 "//mojo/public/cpp/environment",
549 "//mojo/public/cpp/system:system", 550 "//mojo/public/cpp/system:system",
550 "//mojo/services/nfc/public/interfaces", 551 "//mojo/services/nfc/public/interfaces",
551 "//shell/test:bindings", 552 "//shell/test:bindings",
552 ] 553 ]
553 } 554 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698