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

Side by Side Diff: content/browser/BUILD.gn

Issue 1811163002: Share link header parsing code between blink and content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@base-optional
Patch Set: Created 4 years, 8 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//mojo/public/mojo_application_manifest.gni") 9 import("//mojo/public/mojo_application_manifest.gni")
10 10
(...skipping 14 matching lines...) Expand all
25 ldflags = [] 25 ldflags = []
26 26
27 deps = [ 27 deps = [
28 "//base", 28 "//base",
29 "//base:base_static", 29 "//base:base_static",
30 "//base/third_party/dynamic_annotations", 30 "//base/third_party/dynamic_annotations",
31 "//cc", 31 "//cc",
32 "//cc/surfaces", 32 "//cc/surfaces",
33 "//components/filesystem:lib", 33 "//components/filesystem:lib",
34 "//components/leveldb:lib", 34 "//components/leveldb:lib",
35 "//components/link_header_util",
35 "//components/mime_util", 36 "//components/mime_util",
36 "//components/profile_service:lib", 37 "//components/profile_service:lib",
37 "//components/scheduler:common", 38 "//components/scheduler:common",
38 "//components/tracing", 39 "//components/tracing",
39 "//components/tracing:startup_tracing", 40 "//components/tracing:startup_tracing",
40 "//components/url_formatter", 41 "//components/url_formatter",
41 "//content:resources", 42 "//content:resources",
42 "//content/app/resources", 43 "//content/app/resources",
43 "//content/app/strings", 44 "//content/app/strings",
44 "//content/browser/background_sync:background_sync_proto", 45 "//content/browser/background_sync:background_sync_proto",
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 type = "exe" 531 type = "exe"
531 application_name = "chrome" 532 application_name = "chrome"
532 source = "mojo/chrome_manifest.json" 533 source = "mojo/chrome_manifest.json"
533 } 534 }
534 535
535 mojo_application_manifest("chrome_renderer_manifest") { 536 mojo_application_manifest("chrome_renderer_manifest") {
536 type = "exe" 537 type = "exe"
537 application_name = "chrome_renderer" 538 application_name = "chrome_renderer"
538 source = "mojo/chrome_renderer_manifest.json" 539 source = "mojo/chrome_renderer_manifest.json"
539 } 540 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698