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

Side by Side Diff: headless/BUILD.gn

Issue 2693943004: headless: Add support for minidump generation on Linux (Closed)
Patch Set: Review comments Created 3 years, 10 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 | headless/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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//headless/headless.gni") 6 import("//headless/headless.gni")
7 import("//build/util/process_version.gni") 7 import("//build/util/process_version.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 "lib/browser/headless_browser_main_parts.cc", 199 "lib/browser/headless_browser_main_parts.cc",
200 "lib/browser/headless_browser_main_parts.h", 200 "lib/browser/headless_browser_main_parts.h",
201 "lib/browser/headless_content_browser_client.cc", 201 "lib/browser/headless_content_browser_client.cc",
202 "lib/browser/headless_content_browser_client.h", 202 "lib/browser/headless_content_browser_client.h",
203 "lib/browser/headless_devtools.cc", 203 "lib/browser/headless_devtools.cc",
204 "lib/browser/headless_devtools.h", 204 "lib/browser/headless_devtools.h",
205 "lib/browser/headless_devtools_client_impl.cc", 205 "lib/browser/headless_devtools_client_impl.cc",
206 "lib/browser/headless_devtools_client_impl.h", 206 "lib/browser/headless_devtools_client_impl.h",
207 "lib/browser/headless_devtools_manager_delegate.cc", 207 "lib/browser/headless_devtools_manager_delegate.cc",
208 "lib/browser/headless_devtools_manager_delegate.h", 208 "lib/browser/headless_devtools_manager_delegate.h",
209 "lib/browser/headless_macros.h",
209 "lib/browser/headless_platform_event_source.cc", 210 "lib/browser/headless_platform_event_source.cc",
210 "lib/browser/headless_platform_event_source.h", 211 "lib/browser/headless_platform_event_source.h",
211 "lib/browser/headless_url_request_context_getter.cc", 212 "lib/browser/headless_url_request_context_getter.cc",
212 "lib/browser/headless_url_request_context_getter.h", 213 "lib/browser/headless_url_request_context_getter.h",
213 "lib/browser/headless_web_contents_impl.cc", 214 "lib/browser/headless_web_contents_impl.cc",
214 "lib/browser/headless_web_contents_impl.h", 215 "lib/browser/headless_web_contents_impl.h",
216 "lib/headless_crash_reporter_client.cc",
217 "lib/headless_crash_reporter_client.h",
215 "lib/headless_content_client.cc", 218 "lib/headless_content_client.cc",
216 "lib/headless_content_client.h", 219 "lib/headless_content_client.h",
217 "lib/headless_content_main_delegate.cc", 220 "lib/headless_content_main_delegate.cc",
218 "lib/headless_content_main_delegate.h", 221 "lib/headless_content_main_delegate.h",
219 "public/headless_browser.cc", 222 "public/headless_browser.cc",
220 "public/headless_browser.h", 223 "public/headless_browser.h",
221 "public/headless_browser_context.h", 224 "public/headless_browser_context.h",
222 "public/headless_devtools_client.h", 225 "public/headless_devtools_client.h",
223 "public/headless_devtools_host.h", 226 "public/headless_devtools_host.h",
224 "public/headless_devtools_target.h", 227 "public/headless_devtools_target.h",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 "lib/browser/headless_window_parenting_client.h", 272 "lib/browser/headless_window_parenting_client.h",
270 "lib/browser/headless_window_tree_host.cc", 273 "lib/browser/headless_window_tree_host.cc",
271 "lib/browser/headless_window_tree_host.h", 274 "lib/browser/headless_window_tree_host.h",
272 ] 275 ]
273 } 276 }
274 277
275 deps = [ 278 deps = [
276 ":gen_devtools_client_api", 279 ":gen_devtools_client_api",
277 ":version_header", 280 ":version_header",
278 "//base", 281 "//base",
282 "//components/crash/content/browser",
279 "//components/security_state/content", 283 "//components/security_state/content",
280 "//components/security_state/core", 284 "//components/security_state/core",
281 "//content/public/app:both", 285 "//content/public/app:both",
282 "//content/public/browser", 286 "//content/public/browser",
283 "//content/public/common", 287 "//content/public/common",
284 "//content/public/common:service_names", 288 "//content/public/common:service_names",
285 "//net", 289 "//net",
286 "//services/service_manager/public/cpp", 290 "//services/service_manager/public/cpp",
287 "//third_party/mesa:osmesa", 291 "//third_party/mesa:osmesa",
288 "//ui/aura", 292 "//ui/aura",
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 467
464 executable("headless_example") { 468 executable("headless_example") {
465 sources = [ 469 sources = [
466 "app/headless_example.cc", 470 "app/headless_example.cc",
467 ] 471 ]
468 472
469 deps = [ 473 deps = [
470 "//headless:headless_shell_lib", 474 "//headless:headless_shell_lib",
471 ] 475 ]
472 } 476 }
OLDNEW
« no previous file with comments | « no previous file | headless/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698