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

Unified Diff: components/sessions/BUILD.gn

Issue 1467803003: Get 'gn_all' building on iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix ios arm build, non-ios build Created 5 years 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 | « components/search_engines/BUILD.gn ('k') | components/signin/ios/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sessions/BUILD.gn
diff --git a/components/sessions/BUILD.gn b/components/sessions/BUILD.gn
index c123259bcd3f6c0d26487e872e54b0d25783e65d..902dd3d7be1cb3382bffc28122d1956a139606e8 100644
--- a/components/sessions/BUILD.gn
+++ b/components/sessions/BUILD.gn
@@ -180,10 +180,13 @@ source_set("unit_tests") {
deps = [
":test_support",
"//base/test:test_support",
- "//content/public/common",
"//sync",
"//testing/gtest",
"//ui/base", # For page transition types.
"//url",
]
+
+ if (!is_ios) {
+ deps += [ "//content/public/common" ]
+ }
}
« no previous file with comments | « components/search_engines/BUILD.gn ('k') | components/signin/ios/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698