OLD | NEW |
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/child/child.gni") | 7 import("//content/child/child.gni") |
8 | 8 |
9 if (is_component_build) { | 9 if (is_component_build) { |
10 link_target_type = "source_set" | 10 link_target_type = "source_set" |
(...skipping 16 matching lines...) Expand all Loading... |
27 ] | 27 ] |
28 if (is_android) { | 28 if (is_android) { |
29 # See comment in content/app/BUILD.gn above content_app_deps. | 29 # See comment in content/app/BUILD.gn above content_app_deps. |
30 visibility += [ "//content/app:*" ] | 30 visibility += [ "//content/app:*" ] |
31 } | 31 } |
32 | 32 |
33 sources = rebase_path(content_child_gypi_values.private_child_sources, | 33 sources = rebase_path(content_child_gypi_values.private_child_sources, |
34 ".", | 34 ".", |
35 "//content") | 35 "//content") |
36 | 36 |
37 configs += [ | 37 configs += [ "//build/config:precompiled_headers" ] |
38 "//build/config:precompiled_headers", | |
39 "//content/public/common:mojo_shell_client", | |
40 ] | |
41 | 38 |
42 public_deps = [ | 39 public_deps = [ |
43 "//gpu/ipc/client:client", | 40 "//gpu/ipc/client:client", |
44 ] | 41 ] |
45 | 42 |
46 deps = [ | 43 deps = [ |
47 "//base", | 44 "//base", |
48 "//components/mime_util", | 45 "//components/mime_util", |
49 "//components/scheduler:scheduler", | 46 "//components/scheduler:scheduler", |
50 "//components/tracing", | 47 "//components/tracing", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 107 |
111 # See comment at the top of //content/BUILD.gn for how this works. | 108 # See comment at the top of //content/BUILD.gn for how this works. |
112 group("for_content_tests") { | 109 group("for_content_tests") { |
113 visibility = [ "//content/test/*" ] | 110 visibility = [ "//content/test/*" ] |
114 if (!is_component_build) { | 111 if (!is_component_build) { |
115 public_deps = [ | 112 public_deps = [ |
116 ":child", | 113 ":child", |
117 ] | 114 ] |
118 } | 115 } |
119 } | 116 } |
OLD | NEW |