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

Unified Diff: components/os_crypt/BUILD.gn

Issue 2151653003: Convert some GN test support targets to static libs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: crypto 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 | « components/open_from_clipboard/BUILD.gn ('k') | components/password_manager/core/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/os_crypt/BUILD.gn
diff --git a/components/os_crypt/BUILD.gn b/components/os_crypt/BUILD.gn
index 81da1116f068d618a05e887095c7381938c10128..1ef7f1fad50c5d1078d86aa5f8de5bfdaa57bf73 100644
--- a/components/os_crypt/BUILD.gn
+++ b/components/os_crypt/BUILD.gn
@@ -5,7 +5,7 @@
import("//build/config/features.gni")
import("//build/config/ui.gni")
-source_set("os_crypt") {
+static_library("os_crypt") {
sources = [
"ie7_password_win.cc",
"ie7_password_win.h",
@@ -75,7 +75,7 @@ source_set("os_crypt") {
}
}
-source_set("test_support") {
+static_library("test_support") {
testonly = true
sources = [
"os_crypt_mocker.cc",
@@ -123,10 +123,7 @@ source_set("unit_tests") {
}
if (use_dbus) {
sources += [ "kwallet_dbus_unittest.cc" ]
- deps += [
- "//dbus",
- "//dbus:test_support",
- ]
+ deps += [ "//dbus:test_support" ]
defines += [ "USE_KWALLET" ]
}
}
« no previous file with comments | « components/open_from_clipboard/BUILD.gn ('k') | components/password_manager/core/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698