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

Side by Side Diff: headless/BUILD.gn

Issue 2693943004: headless: Add support for minidump generation on Linux (Closed)
Patch Set: Formatting 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') | headless/lib/browser/headless_content_browser_client.cc » ('J')
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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_platform_event_source.cc", 209 "lib/browser/headless_platform_event_source.cc",
210 "lib/browser/headless_platform_event_source.h", 210 "lib/browser/headless_platform_event_source.h",
211 "lib/browser/headless_url_request_context_getter.cc", 211 "lib/browser/headless_url_request_context_getter.cc",
212 "lib/browser/headless_url_request_context_getter.h", 212 "lib/browser/headless_url_request_context_getter.h",
213 "lib/browser/headless_web_contents_impl.cc", 213 "lib/browser/headless_web_contents_impl.cc",
214 "lib/browser/headless_web_contents_impl.h", 214 "lib/browser/headless_web_contents_impl.h",
215 "lib/headless_crash_reporter_client.cc",
216 "lib/headless_crash_reporter_client.h",
215 "lib/headless_content_client.cc", 217 "lib/headless_content_client.cc",
216 "lib/headless_content_client.h", 218 "lib/headless_content_client.h",
217 "lib/headless_content_main_delegate.cc", 219 "lib/headless_content_main_delegate.cc",
218 "lib/headless_content_main_delegate.h", 220 "lib/headless_content_main_delegate.h",
219 "public/headless_browser.cc", 221 "public/headless_browser.cc",
220 "public/headless_browser.h", 222 "public/headless_browser.h",
221 "public/headless_browser_context.h", 223 "public/headless_browser_context.h",
222 "public/headless_devtools_client.h", 224 "public/headless_devtools_client.h",
223 "public/headless_devtools_host.h", 225 "public/headless_devtools_host.h",
224 "public/headless_devtools_target.h", 226 "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", 271 "lib/browser/headless_window_parenting_client.h",
270 "lib/browser/headless_window_tree_host.cc", 272 "lib/browser/headless_window_tree_host.cc",
271 "lib/browser/headless_window_tree_host.h", 273 "lib/browser/headless_window_tree_host.h",
272 ] 274 ]
273 } 275 }
274 276
275 deps = [ 277 deps = [
276 ":gen_devtools_client_api", 278 ":gen_devtools_client_api",
277 ":version_header", 279 ":version_header",
278 "//base", 280 "//base",
281 "//components/crash/content/browser",
279 "//components/security_state/content", 282 "//components/security_state/content",
280 "//components/security_state/core", 283 "//components/security_state/core",
281 "//content/public/app:both", 284 "//content/public/app:both",
282 "//content/public/browser", 285 "//content/public/browser",
283 "//content/public/common", 286 "//content/public/common",
284 "//content/public/common:service_names", 287 "//content/public/common:service_names",
285 "//net", 288 "//net",
286 "//services/service_manager/public/cpp", 289 "//services/service_manager/public/cpp",
287 "//third_party/mesa:osmesa", 290 "//third_party/mesa:osmesa",
288 "//ui/aura", 291 "//ui/aura",
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 } 455 }
453 456
454 process_version("version_header") { 457 process_version("version_header") {
455 template_file = "public/version.h.in" 458 template_file = "public/version.h.in"
456 sources = [ 459 sources = [
457 "//build/util/LASTCHANGE", 460 "//build/util/LASTCHANGE",
458 "//chrome/VERSION", 461 "//chrome/VERSION",
459 ] 462 ]
460 output = "$target_gen_dir/public/version.h" 463 output = "$target_gen_dir/public/version.h"
461 } 464 }
OLDNEW
« no previous file with comments | « no previous file | headless/DEPS » ('j') | headless/lib/browser/headless_content_browser_client.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698