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

Unified Diff: components/webcrypto/BUILD.gn

Issue 1304063015: [refactor] Rename the webcrypto/openssl and webcrypto/test directories. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@jwk_refactor
Patch Set: fix filename in gn build Created 5 years, 3 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/components_tests.gyp ('k') | components/webcrypto/algorithms/aes.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webcrypto/BUILD.gn
diff --git a/components/webcrypto/BUILD.gn b/components/webcrypto/BUILD.gn
index ef3bf4e425b62b2d00be3f72170087b82551e3f5..c9345cf7b429a2c73999142328fad6aa699b5cb5 100644
--- a/components/webcrypto/BUILD.gn
+++ b/components/webcrypto/BUILD.gn
@@ -13,37 +13,37 @@ source_set("webcrypto") {
"algorithm_implementation.h",
"algorithm_registry.cc",
"algorithm_registry.h",
+ "algorithms/aes.cc",
+ "algorithms/aes.h",
+ "algorithms/aes_cbc.cc",
+ "algorithms/aes_ctr.cc",
+ "algorithms/aes_gcm.cc",
+ "algorithms/aes_kw.cc",
+ "algorithms/ec.cc",
+ "algorithms/ec.h",
+ "algorithms/ecdh.cc",
+ "algorithms/ecdsa.cc",
+ "algorithms/hkdf.cc",
+ "algorithms/hmac.cc",
+ "algorithms/key.cc",
+ "algorithms/key.h",
+ "algorithms/pbkdf2.cc",
+ "algorithms/rsa.cc",
+ "algorithms/rsa.h",
+ "algorithms/rsa_oaep.cc",
+ "algorithms/rsa_pss.cc",
+ "algorithms/rsa_sign.cc",
+ "algorithms/rsa_sign.h",
+ "algorithms/rsa_ssa.cc",
+ "algorithms/sha.cc",
+ "algorithms/util_openssl.cc",
+ "algorithms/util_openssl.h",
"crypto_data.cc",
"crypto_data.h",
"generate_key_result.cc",
"generate_key_result.h",
"jwk.cc",
"jwk.h",
- "openssl/aes_algorithm_openssl.cc",
- "openssl/aes_algorithm_openssl.h",
- "openssl/aes_cbc_openssl.cc",
- "openssl/aes_ctr_openssl.cc",
- "openssl/aes_gcm_openssl.cc",
- "openssl/aes_kw_openssl.cc",
- "openssl/ec_algorithm_openssl.cc",
- "openssl/ec_algorithm_openssl.h",
- "openssl/ecdh_openssl.cc",
- "openssl/ecdsa_openssl.cc",
- "openssl/hkdf_openssl.cc",
- "openssl/hmac_openssl.cc",
- "openssl/key_openssl.cc",
- "openssl/key_openssl.h",
- "openssl/pbkdf2_openssl.cc",
- "openssl/rsa_hashed_algorithm_openssl.cc",
- "openssl/rsa_hashed_algorithm_openssl.h",
- "openssl/rsa_oaep_openssl.cc",
- "openssl/rsa_pss_openssl.cc",
- "openssl/rsa_sign_openssl.cc",
- "openssl/rsa_sign_openssl.h",
- "openssl/rsa_ssa_openssl.cc",
- "openssl/sha_openssl.cc",
- "openssl/util_openssl.cc",
- "openssl/util_openssl.h",
"platform_crypto.h",
"status.cc",
"status.h",
@@ -64,20 +64,20 @@ source_set("webcrypto") {
source_set("unit_tests") {
testonly = true
sources = [
- "test/aes_cbc_unittest.cc",
- "test/aes_ctr_unittest.cc",
- "test/aes_gcm_unittest.cc",
- "test/aes_kw_unittest.cc",
- "test/ecdh_unittest.cc",
- "test/ecdsa_unittest.cc",
- "test/hmac_unittest.cc",
- "test/rsa_oaep_unittest.cc",
- "test/rsa_pss_unittest.cc",
- "test/rsa_ssa_unittest.cc",
- "test/sha_unittest.cc",
- "test/status_unittest.cc",
- "test/test_helpers.cc",
- "test/test_helpers.h",
+ "algorithms/aes_cbc_unittest.cc",
+ "algorithms/aes_ctr_unittest.cc",
+ "algorithms/aes_gcm_unittest.cc",
+ "algorithms/aes_kw_unittest.cc",
+ "algorithms/ecdh_unittest.cc",
+ "algorithms/ecdsa_unittest.cc",
+ "algorithms/hmac_unittest.cc",
+ "algorithms/rsa_oaep_unittest.cc",
+ "algorithms/rsa_pss_unittest.cc",
+ "algorithms/rsa_ssa_unittest.cc",
+ "algorithms/sha_unittest.cc",
+ "algorithms/test_helpers.cc",
+ "algorithms/test_helpers.h",
+ "status_unittest.cc",
]
deps = [
« no previous file with comments | « components/components_tests.gyp ('k') | components/webcrypto/algorithms/aes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698