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

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
« no previous file with comments | « content/public/app/BUILD.gn ('k') | content/public/browser/desktop_media_id.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/BUILD.gn
diff --git a/content/public/browser/BUILD.gn b/content/public/browser/BUILD.gn
index 8de9dd8c4ea77fbd4bc5016cf68cc5bc020f794a..643cb8f7436abd68cedfbcfe8d55da4acfe7cd1a 100644
--- a/content/public/browser/BUILD.gn
+++ b/content/public/browser/BUILD.gn
@@ -25,10 +25,6 @@ source_set("browser_sources") {
".",
"//content")
- if (use_aura) {
- sources -= [ "context_factory.h" ]
- }
-
configs += [
"//build/config:precompiled_headers",
"//content:content_implementation",
@@ -43,12 +39,19 @@ source_set("browser_sources") {
"//skia",
]
deps = [
+ "//cc",
"//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 = [
@@ -56,4 +59,13 @@ source_set("browser_sources") {
# include headers from each other.
"//content/browser",
]
+
+ if (is_android) {
+ deps += [ "//ui/android" ]
+ }
+
+ if (use_aura) {
+ sources -= [ "context_factory.h" ]
+ deps += [ "//ui/aura" ]
+ }
}
« no previous file with comments | « content/public/app/BUILD.gn ('k') | content/public/browser/desktop_media_id.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698