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

Unified Diff: content/public/app/BUILD.gn

Issue 2158553002: Whitelist all of content for "gn check" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android Created 4 years, 5 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 | « content/ppapi_plugin/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/app/BUILD.gn
diff --git a/content/public/app/BUILD.gn b/content/public/app/BUILD.gn
index 9b29c2daea3ae441ad88e686094bd8a92727463f..470819e5b1348239a2810419c6aa16b873b9550d 100644
--- a/content/public/app/BUILD.gn
+++ b/content/public/app/BUILD.gn
@@ -55,6 +55,12 @@ if (is_component_build) {
"//content/app:both",
"//content/public/browser:browser_sources",
]
+
+ allow_circular_includes_from = [
+ # This target is a pair with the non-public version. They always go
+ # together and include headers from each other.
+ "//content/app:both",
+ ]
}
# These all just forward to content, which in turn depends on "both_sources".
@@ -95,6 +101,12 @@ if (is_component_build) {
"//content/public/browser",
"//content/public/common",
]
+
+ allow_circular_includes_from = [
+ # This target is a pair with the non-public version. They always go
+ # together and include headers from each other.
+ "//content/app:both",
+ ]
}
if (is_multi_dll_chrome) {
@@ -111,6 +123,12 @@ if (is_component_build) {
"//content/public/browser",
"//content/public/common",
]
+
+ allow_circular_includes_from = [
+ # This target is a pair with the non-public version. They always go
+ # together and include headers from each other.
+ "//content/app:browser",
+ ]
}
source_set("child") {
@@ -125,6 +143,12 @@ if (is_component_build) {
"//content/app:child",
"//content/public/common",
]
+
+ allow_circular_includes_from = [
+ # This target is a pair with the non-public version. They always go
+ # together and include headers from each other.
+ "//content/app:child",
+ ]
}
} else {
# When the multi-DLL build is disabled, there is only one type of the
« no previous file with comments | « content/ppapi_plugin/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698