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

Unified Diff: chrome/app/BUILD.gn

Issue 1572673002: chrome: fix gn check errors for "test_support" target under app directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert path_parser change - gn check does not understand it yet Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
+ ]
}
}
« no previous file with comments | « .gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698