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

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_landing! 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
« no previous file with comments | « content/test/BUILD.gn ('k') | extensions/shell/browser/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 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 7
8 # Technically, this directory should not depend on files from src/chrome, but 8 # Technically, this directory should not depend on files from src/chrome, but
9 # that's where the VERSION file is. This should probably all be moved to 9 # that's where the VERSION file is. This should probably all be moved to
10 # src/build. 10 # src/build.
(...skipping 13 matching lines...) Expand all
24 24
25 source_set("app_shell_lib") { 25 source_set("app_shell_lib") {
26 # TODO(jamescook): investigate and get rid of test dependencies. This library 26 # TODO(jamescook): investigate and get rid of test dependencies. This library
27 # is testonly because it depends on testonly libraries, namely 27 # is testonly because it depends on testonly libraries, namely
28 # //content/shell:content_shell_lib. See http://crbug.com/438283 28 # //content/shell:content_shell_lib. See http://crbug.com/438283
29 testonly = true 29 testonly = true
30 deps = [ 30 deps = [
31 ":resources", 31 ":resources",
32 ":version_header", 32 ":version_header",
33 "//base", 33 "//base",
34 "//components/devtools_http_handler",
35 "//components/guest_view/browser", 34 "//components/guest_view/browser",
36 "//components/guest_view/common", 35 "//components/guest_view/common",
37 "//components/guest_view/renderer", 36 "//components/guest_view/renderer",
38 "//components/pref_registry", 37 "//components/pref_registry",
39 "//components/prefs", 38 "//components/prefs",
40 "//components/update_client", 39 "//components/update_client",
41 "//components/user_prefs", 40 "//components/user_prefs",
42 "//components/web_cache/renderer", 41 "//components/web_cache/renderer",
43 "//content", 42 "//content",
44 "//content/shell:content_shell_lib", 43 "//content/shell:content_shell_lib",
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 "//extensions/browser", 343 "//extensions/browser",
345 ] 344 ]
346 345
347 if (is_chromeos) { 346 if (is_chromeos) {
348 deps += [ 347 deps += [
349 "//chromeos:test_support", 348 "//chromeos:test_support",
350 "//components/keyed_service/content", 349 "//components/keyed_service/content",
351 ] 350 ]
352 } 351 }
353 } 352 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | extensions/shell/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698