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

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

Issue 2867073006: Adds a /json/protocol endpoint to serve the DevTools protocol (Closed)
Patch Set: try a different dependancy Created 3 years, 7 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("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 "//components/tracing", 57 "//components/tracing",
58 "//components/tracing:startup_tracing", 58 "//components/tracing:startup_tracing",
59 "//components/url_formatter", 59 "//components/url_formatter",
60 "//components/variations", 60 "//components/variations",
61 "//components/viz/frame_sinks", 61 "//components/viz/frame_sinks",
62 "//content:resources", 62 "//content:resources",
63 "//content/app/resources", 63 "//content/app/resources",
64 "//content/app/strings", 64 "//content/app/strings",
65 "//content/browser/background_sync:background_sync_proto", 65 "//content/browser/background_sync:background_sync_proto",
66 "//content/browser/cache_storage:cache_storage_proto", 66 "//content/browser/cache_storage:cache_storage_proto",
67 "//content/browser/devtools:devtools_resources",
67 "//content/browser/devtools:protocol_sources", 68 "//content/browser/devtools:protocol_sources",
68 "//content/browser/devtools:resources",
69 "//content/browser/dom_storage:local_storage_proto", 69 "//content/browser/dom_storage:local_storage_proto",
70 "//content/browser/notifications:notification_proto", 70 "//content/browser/notifications:notification_proto",
71 "//content/browser/payments:payment_app_proto", 71 "//content/browser/payments:payment_app_proto",
72 "//content/browser/service_worker:service_worker_proto", 72 "//content/browser/service_worker:service_worker_proto",
73 "//content/browser/speech/proto", 73 "//content/browser/speech/proto",
74 "//content/common", 74 "//content/common",
75 "//content/common:features", 75 "//content/common:features",
76 "//content/common:mojo_bindings", 76 "//content/common:mojo_bindings",
77 "//content/public/common:common_sources", 77 "//content/public/common:common_sources",
78 "//crypto", 78 "//crypto",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 "//skia", 132 "//skia",
133 "//sql", 133 "//sql",
134 "//storage/browser", 134 "//storage/browser",
135 "//storage/common", 135 "//storage/common",
136 "//third_party/WebKit/public:blink_headers", 136 "//third_party/WebKit/public:blink_headers",
137 "//third_party/WebKit/public:features", 137 "//third_party/WebKit/public:features",
138 "//third_party/WebKit/public:image_resources", 138 "//third_party/WebKit/public:image_resources",
139 "//third_party/WebKit/public:mojo_bindings", 139 "//third_party/WebKit/public:mojo_bindings",
140 "//third_party/WebKit/public:resources", 140 "//third_party/WebKit/public:resources",
141 "//third_party/angle:angle_common", 141 "//third_party/angle:angle_common",
142 "//third_party/brotli:dec",
142 "//third_party/icu", 143 "//third_party/icu",
143 "//third_party/libyuv", 144 "//third_party/libyuv",
144 "//third_party/re2", 145 "//third_party/re2",
145 "//third_party/zlib", 146 "//third_party/zlib",
146 "//third_party/zlib:compression_utils", 147 "//third_party/zlib:compression_utils",
147 "//third_party/zlib:zip", 148 "//third_party/zlib:zip",
148 "//ui/accessibility", 149 "//ui/accessibility",
149 "//ui/accessibility:ax_gen", 150 "//ui/accessibility:ax_gen",
150 "//ui/base", 151 "//ui/base",
151 "//ui/base/ime", 152 "//ui/base/ime",
(...skipping 1988 matching lines...) Expand 10 before | Expand all | Expand 10 after
2140 if (!is_component_build) { 2141 if (!is_component_build) {
2141 public_deps = [ 2142 public_deps = [
2142 ":browser", 2143 ":browser",
2143 ] 2144 ]
2144 } else { 2145 } else {
2145 public_deps = [ 2146 public_deps = [
2146 "//third_party/leveldatabase", 2147 "//third_party/leveldatabase",
2147 ] 2148 ]
2148 } 2149 }
2149 } 2150 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698