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

Side by Side Diff: extensions/shell/BUILD.gn

Issue 2300703005: DevTools: merge devtools_http_handler into content - it is used in all the embedders anyways. (Closed)
Patch Set: for review Created 4 years, 3 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("//extensions/shell/app_shell.gni") 7 import("//extensions/shell/app_shell.gni")
8 8
9 # Technically, this directory should not depend on files from src/chrome, but 9 # Technically, this directory should not depend on files from src/chrome, but
10 # that's where the VERSION file is. This should probably all be moved to 10 # that's where the VERSION file is. This should probably all be moved to
(...skipping 14 matching lines...) Expand all
25 25
26 source_set("app_shell_lib") { 26 source_set("app_shell_lib") {
27 # TODO(jamescook): investigate and get rid of test dependencies. This library 27 # TODO(jamescook): investigate and get rid of test dependencies. This library
28 # is testonly because it depends on testonly libraries, namely 28 # is testonly because it depends on testonly libraries, namely
29 # //content/shell:content_shell_lib. See http://crbug.com/438283 29 # //content/shell:content_shell_lib. See http://crbug.com/438283
30 testonly = true 30 testonly = true
31 deps = [ 31 deps = [
32 ":resources", 32 ":resources",
33 ":version_header", 33 ":version_header",
34 "//base", 34 "//base",
35 "//components/devtools_http_handler",
36 "//components/guest_view/browser", 35 "//components/guest_view/browser",
37 "//components/guest_view/common", 36 "//components/guest_view/common",
38 "//components/guest_view/renderer", 37 "//components/guest_view/renderer",
39 "//components/pref_registry", 38 "//components/pref_registry",
40 "//components/prefs", 39 "//components/prefs",
41 "//components/update_client", 40 "//components/update_client",
42 "//components/user_prefs", 41 "//components/user_prefs",
43 "//components/web_cache/renderer", 42 "//components/web_cache/renderer",
44 "//content", 43 "//content",
45 "//content/shell:content_shell_lib", 44 "//content/shell:content_shell_lib",
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 "//extensions/browser", 263 "//extensions/browser",
265 ] 264 ]
266 265
267 if (is_chromeos) { 266 if (is_chromeos) {
268 deps += [ 267 deps += [
269 "//chromeos:test_support", 268 "//chromeos:test_support",
270 "//components/keyed_service/content", 269 "//components/keyed_service/content",
271 ] 270 ]
272 } 271 }
273 } 272 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698