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

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

Issue 1817903002: Make more of content pass "gn check" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: content/public/browser/BUILD.gn
diff --git a/content/public/browser/BUILD.gn b/content/public/browser/BUILD.gn
index 89fdec11fd4b0291c78b36563ebff7a09554c1bc..cc6d83953a9fe2d583f29a493a780523f55de4a1 100644
--- a/content/public/browser/BUILD.gn
+++ b/content/public/browser/BUILD.gn
@@ -39,10 +39,6 @@ source_set("browser_sources") {
"//content")
}
- if (use_aura) {
- sources -= [ "context_factory.h" ]
- }
-
configs += [
"//build/config:precompiled_headers",
"//content:content_implementation",
@@ -59,10 +55,16 @@ source_set("browser_sources") {
deps = [
"//content/browser",
"//content/public/common:common_sources",
+ "//gpu",
+ "//media",
"//net",
+ "//ppapi/c",
+ "//storage/browser",
"//ui/accessibility",
"//ui/base",
"//ui/events",
+ "//ui/gl",
+ "//ui/surface",
]
allow_circular_includes_from = [
@@ -70,4 +72,9 @@ source_set("browser_sources") {
# include headers from each other.
"//content/browser",
]
+
+ if (use_aura) {
+ sources -= [ "context_factory.h" ]
+ deps += [ "//ui/aura" ]
+ }
}

Powered by Google App Engine
This is Rietveld 408576698