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

Side by Side Diff: content/public/child/BUILD.gn

Issue 2679323006: Remove content/browser dependency on WebFontRenderStyle. (Closed)
Patch Set: merge 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
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("//ppapi/features/features.gni") 5 import("//ppapi/features/features.gni")
6 6
7 # See //content/BUILD.gn for how this works. 7 # See //content/BUILD.gn for how this works.
8 group("child") { 8 group("child") {
9 if (is_component_build) { 9 if (is_component_build) {
10 public_deps = [ 10 public_deps = [
(...skipping 10 matching lines...) Expand all
21 public_deps += [ "//content/ppapi_plugin" ] 21 public_deps += [ "//content/ppapi_plugin" ]
22 } 22 }
23 } 23 }
24 } 24 }
25 25
26 source_set("child_sources") { 26 source_set("child_sources") {
27 # External code should depend in via ":child" above. 27 # External code should depend in via ":child" above.
28 visibility = [ "//content/*" ] 28 visibility = [ "//content/*" ]
29 29
30 sources = [ 30 sources = [
31 "child_process_sandbox_support_linux.h",
31 "child_thread.h", 32 "child_thread.h",
32 "fixed_received_data.cc", 33 "fixed_received_data.cc",
33 "fixed_received_data.h", 34 "fixed_received_data.h",
34 "image_decoder_utils.h", 35 "image_decoder_utils.h",
35 "request_peer.h", 36 "request_peer.h",
36 "resource_dispatcher_delegate.h", 37 "resource_dispatcher_delegate.h",
37 "v8_value_converter.h", 38 "v8_value_converter.h",
38 "worker_thread.h", 39 "worker_thread.h",
39 ] 40 ]
40 41
41 configs += [ 42 configs += [
42 "//build/config/compiler:wexit_time_destructors", 43 "//build/config/compiler:wexit_time_destructors",
43 "//content:content_implementation", 44 "//content:content_implementation",
44 ] 45 ]
45 46
46 deps = [ 47 deps = [
47 "//content/child", # Must not be public_deps! 48 "//content/child", # Must not be public_deps!
48 "//content/public/common:common_sources", 49 "//content/public/common:common_sources",
49 "//gin", 50 "//gin",
51 "//ppapi/c",
50 ] 52 ]
51 53
52 allow_circular_includes_from = [ 54 allow_circular_includes_from = [
53 # This target is a pair with content/child. They always go together and 55 # This target is a pair with content/child. They always go together and
54 # include headers from each other. 56 # include headers from each other.
55 "//content/child", 57 "//content/child",
56 ] 58 ]
57 } 59 }
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_blink_platform_impl.cc ('k') | content/public/child/child_process_sandbox_support_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698