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

Side by Side Diff: blimp/engine/BUILD.gn

Issue 1783053002: Initial addition of blimp crash client code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address kmarshall's comments Created 4 years, 9 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
« no previous file with comments | « no previous file | blimp/engine/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 import("//tools/grit/grit_rule.gni") 9 import("//tools/grit/grit_rule.gni")
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 "app/blimp_permission_manager.h", 62 "app/blimp_permission_manager.h",
63 "app/blimp_url_request_context_getter.cc", 63 "app/blimp_url_request_context_getter.cc",
64 "app/blimp_url_request_context_getter.h", 64 "app/blimp_url_request_context_getter.h",
65 "app/switches.cc", 65 "app/switches.cc",
66 "app/switches.h", 66 "app/switches.h",
67 ] 67 ]
68 68
69 deps = [ 69 deps = [
70 ":app_ui", 70 ":app_ui",
71 ":common", 71 ":common",
72 ":crash",
72 ":session", 73 ":session",
73 "//base", 74 "//base",
74 "//blimp/common/proto", 75 "//blimp/common/proto",
75 "//components/web_cache/renderer", 76 "//components/web_cache/renderer",
76 "//content", 77 "//content",
77 "//content/public/app:both", 78 "//content/public/app:both",
78 "//content/public/browser", 79 "//content/public/browser",
79 "//content/public/common", 80 "//content/public/common",
80 "//content/public/renderer", 81 "//content/public/renderer",
81 "//content/public/utility", 82 "//content/public/utility",
(...skipping 19 matching lines...) Expand all
101 "//ui/aura", 102 "//ui/aura",
102 "//ui/compositor", 103 "//ui/compositor",
103 "//ui/events", 104 "//ui/events",
104 "//ui/gfx", 105 "//ui/gfx",
105 "//ui/platform_window", 106 "//ui/platform_window",
106 "//ui/platform_window", 107 "//ui/platform_window",
107 "//ui/platform_window/stub/", 108 "//ui/platform_window/stub/",
108 ] 109 ]
109 } 110 }
110 111
112 source_set("crash") {
113 sources = [
114 "app/blimp_engine_crash_keys.cc",
115 "app/blimp_engine_crash_keys.h",
116 "app/blimp_engine_crash_reporter_client.cc",
117 "app/blimp_engine_crash_reporter_client.h",
118 ]
119
120 deps = [
121 "//base",
122 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted",
123 "//components/crash/core/common",
124 "//components/version_info",
125 "//content/public/common",
126 ]
127 }
128
111 source_set("common") { 129 source_set("common") {
112 sources = [ 130 sources = [
113 "common/blimp_browser_context.cc", 131 "common/blimp_browser_context.cc",
114 "common/blimp_browser_context.h", 132 "common/blimp_browser_context.h",
115 "common/blimp_content_client.cc", 133 "common/blimp_content_client.cc",
116 "common/blimp_content_client.h", 134 "common/blimp_content_client.h",
117 ] 135 ]
118 136
119 deps = [ 137 deps = [
120 "//base", 138 "//base",
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 _rebased_dockerfile, 282 _rebased_dockerfile,
265 "--startup-script", 283 "--startup-script",
266 _rebased_startup_script, 284 _rebased_startup_script,
267 "--manifest", 285 "--manifest",
268 _rebased_manifest, 286 _rebased_manifest,
269 "--output", 287 "--output",
270 rebase_path(_bundle), 288 rebase_path(_bundle),
271 ] 289 ]
272 } 290 }
273 } 291 }
OLDNEW
« no previous file with comments | « no previous file | blimp/engine/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698