summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorscottmg <scottmg@chromium.org>2014-12-03 15:27:24 -0800
committerCommit bot <commit-bot@chromium.org>2014-12-03 23:27:41 +0000
commit34fb7e5919ed42dc800acf3961fe6a2bf9e7d6eb (patch)
treedc6a3e4de8e3093074390b933e9d4cb0e79070f5 /crypto
parente00b5de3d64b4ea58797b13f42039956a5b3ddec (diff)
downloadchromium_src-34fb7e5919ed42dc800acf3961fe6a2bf9e7d6eb.zip
chromium_src-34fb7e5919ed42dc800acf3961fe6a2bf9e7d6eb.tar.gz
chromium_src-34fb7e5919ed42dc800acf3961fe6a2bf9e7d6eb.tar.bz2
gn format // (the rest, except mojo)
Excluded mojo because I think that needs to happen on the other side. At gn --version = 306668 for which roll is in CQ. R=brettw@chromium.org TBR=scherkus@chromium.org BUG=348474 Review URL: https://codereview.chromium.org/774353003 Cr-Commit-Position: refs/heads/master@{#306708}
Diffstat (limited to 'crypto')
-rw-r--r--crypto/BUILD.gn13
1 files changed, 8 insertions, 5 deletions
diff --git a/crypto/BUILD.gn b/crypto/BUILD.gn
index dd4136a..94388f77 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).