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("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 "renderer/test_runner/web_test_delegate.h", | 196 "renderer/test_runner/web_test_delegate.h", |
197 "renderer/test_runner/web_test_proxy.cc", | 197 "renderer/test_runner/web_test_proxy.cc", |
198 "renderer/test_runner/web_test_proxy.h", | 198 "renderer/test_runner/web_test_proxy.h", |
199 "renderer/test_runner/web_test_runner.h", | 199 "renderer/test_runner/web_test_runner.h", |
200 "renderer/webkit_test_runner.cc", | 200 "renderer/webkit_test_runner.cc", |
201 "renderer/webkit_test_runner.h", | 201 "renderer/webkit_test_runner.h", |
202 ] | 202 ] |
203 | 203 |
204 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 204 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
205 | 205 |
| 206 public_deps = [ |
| 207 # This exposes all public content APIs. |
| 208 "//content/public/app:both", |
| 209 "//content/public/browser", |
| 210 "//content/public/common", |
| 211 "//content/public/plugin", |
| 212 "//content/public/renderer", |
| 213 "//content/public/utility", |
| 214 ] |
206 deps = [ | 215 deps = [ |
207 ":resources", | 216 ":resources", |
208 "//base", | 217 "//base", |
209 "//base:base_static", | 218 "//base:base_static", |
210 "//base/allocator", | 219 "//base/allocator", |
211 "//base/third_party/dynamic_annotations", | 220 "//base/third_party/dynamic_annotations", |
212 "//cc", | 221 "//cc", |
213 "//components/crash/app", | 222 "//components/crash/app", |
214 "//components/web_cache/renderer", | 223 "//components/web_cache/renderer", |
215 "//content:resources", | 224 "//content:resources", |
216 "//content/app/resources", | 225 "//content/app/resources", |
217 "//content/app/strings", | 226 "//content/app/strings", |
218 "//content/gpu", | 227 "//content/gpu", |
219 "//content/public/app:both", | |
220 "//content/public/browser", | |
221 "//content/public/common", | |
222 "//content/public/plugin", | |
223 "//content/public/renderer", | |
224 "//content/public/utility", | |
225 "//content/test:layouttest_support", | 228 "//content/test:layouttest_support", |
226 "//gin", | 229 "//gin", |
227 "//gpu", | 230 "//gpu", |
228 "//ipc", | 231 "//ipc", |
229 "//media", | 232 "//media", |
230 "//net", | 233 "//net", |
231 "//net:net_resources", | 234 "//net:net_resources", |
232 "//skia", | 235 "//skia", |
233 "//storage/browser", | 236 "//storage/browser", |
234 "//third_party/WebKit/public:blink", | 237 "//third_party/WebKit/public:blink", |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 if (is_android && !is_android_webview_build) { | 477 if (is_android && !is_android_webview_build) { |
475 # Some tests rely on this tool. It might be nicer if these tests relied on | 478 # Some tests rely on this tool. It might be nicer if these tests relied on |
476 # image diff rather than having content shell depend on it. | 479 # image diff rather than having content shell depend on it. |
477 datadeps = [ | 480 datadeps = [ |
478 "//tools/imagediff($host_toolchain)", | 481 "//tools/imagediff($host_toolchain)", |
479 ] | 482 ] |
480 } | 483 } |
481 } | 484 } |
482 | 485 |
483 } | 486 } |
OLD | NEW |