| Index: chrome/app/BUILD.gn
|
| diff --git a/chrome/app/BUILD.gn b/chrome/app/BUILD.gn
|
| index 7ca43b02c0d14c23b1fec813e1c847cda4bca7df..92bb6433c274b92438e992c79131d190442cf2b1 100644
|
| --- a/chrome/app/BUILD.gn
|
| +++ b/chrome/app/BUILD.gn
|
| @@ -322,11 +322,15 @@ source_set("test_support") {
|
| deps = [
|
| "//base",
|
| "//chrome/browser",
|
| + "//chrome/browser/policy:path_parser",
|
| "//chrome/child",
|
| "//chrome/common",
|
| "//chrome/plugin",
|
| "//chrome/renderer",
|
| "//chrome/utility",
|
| + "//components/crash/content/app",
|
| + "//components/crash/content/app:lib",
|
| + "//components/startup_metric_utils/browser:lib",
|
| "//content/public/app:both",
|
| "//content/public/common",
|
| "//ui/base",
|
| @@ -334,9 +338,29 @@ source_set("test_support") {
|
|
|
| if (is_mac) {
|
| sources += [ "chrome_main_mac.mm" ]
|
| +
|
| + deps += [ "//chrome:main_dll" ]
|
| + }
|
| +
|
| + if (is_win) {
|
| + deps += [
|
| + "//chrome:chrome_initial",
|
| + "//sandbox/win:sandbox",
|
| + ]
|
| + }
|
| +
|
| + if (is_chromeos) {
|
| + deps += [ "//chrome/browser/chromeos" ]
|
| + }
|
| +
|
| + if (enable_pdf) {
|
| + deps += [ "//pdf" ]
|
| }
|
|
|
| if (enable_plugins && enable_nacl) {
|
| - deps += [ "//components/nacl/renderer/plugin:nacl_trusted_plugin" ]
|
| + deps += [
|
| + "//components/nacl/browser",
|
| + "//components/nacl/renderer/plugin:nacl_trusted_plugin",
|
| + ]
|
| }
|
| }
|
|
|