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

Unified Diff: crypto/BUILD.gn

Issue 774353003: gn format // (the rest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase net Created 6 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 | « courgette/BUILD.gn ('k') | dbus/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/BUILD.gn
diff --git a/crypto/BUILD.gn b/crypto/BUILD.gn
index dd4136ae33fd9c3231f1f324d4a720f8504e7e2a..94388f773110604606a3b29f3b3af3734ebb4cd5 100644
--- a/crypto/BUILD.gn
+++ b/crypto/BUILD.gn
@@ -40,6 +40,7 @@ component("crypto") {
"hmac_openssl.cc",
"mac_security_services_lock.cc",
"mac_security_services_lock.h",
+
# TODO(brettw) these mocks should be moved to a test_support_crypto target
# if possible.
"mock_apple_keychain.cc",
@@ -232,9 +233,7 @@ if (!is_win) {
]
if (use_openssl || !is_linux) {
- sources -= [
- "rsa_private_key_nss_unittest.cc",
- ]
+ sources -= [ "rsa_private_key_nss_unittest.cc" ]
}
if (use_openssl) {
@@ -293,9 +292,13 @@ source_set("test_support") {
# on the current SSL library should just depend on this.
group("platform") {
if (use_openssl) {
- deps = [ "//third_party/boringssl" ]
+ deps = [
+ "//third_party/boringssl",
+ ]
} else {
- deps = [ "//net/third_party/nss/ssl:libssl" ]
+ deps = [
+ "//net/third_party/nss/ssl:libssl",
+ ]
if (is_linux) {
# On Linux, we use the system NSS (excepting SSL where we always use our
# own).
« no previous file with comments | « courgette/BUILD.gn ('k') | dbus/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698