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

Unified Diff: net/BUILD.gn

Issue 462983002: GN: Make content_shell and webkit_unit_tests work in component build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 5609408e443ca8764bdaf832475a0cfee4d8b40c..d9b2d395114fe93be0906308e5703a47d73f3e80 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -688,7 +688,7 @@ source_set("test_support") {
deps = [
"//base",
"//base/test:test_support",
- "//crypto:platform",
+ "//crypto",
"//net",
"//net/tools/tld_cleanup",
"//testing/gmock",
@@ -720,7 +720,9 @@ source_set("test_support") {
]
}
- if (!use_nss_certs) {
+ if (use_nss_certs) {
+ deps += ["//crypto:platform" ]
+ } else {
sources -= [
"test/cert_test_util_nss.cc",
]
@@ -753,6 +755,7 @@ source_set("balsa") {
deps = [
":net",
"//base",
+ "//url",
]
}
@@ -846,7 +849,10 @@ if (!is_ios && !is_android) {
]
if (is_linux) {
- configs += [ "//build/config/linux:gconf" ]
+ configs += [
+ "//build/config/linux:gconf",
+ "//build/config/linux:glib",
+ ]
deps += [ "//build/config/linux:gio" ]
}
}
« content/renderer/render_thread_impl.h ('K') | « media/cast/BUILD.gn ('k') | sync/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698