diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-22 22:25:23 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-22 22:25:23 +0000 |
commit | 59ff2d432815be7bd59b96b7567f68b592847ac5 (patch) | |
tree | b843f1715427edbd3d10036ce16d5765bf5a5d70 /crypto/BUILD.gn | |
parent | e20e21cf6486ef399ca6d249210306a1d6e8cc5a (diff) | |
download | chromium_src-59ff2d432815be7bd59b96b7567f68b592847ac5.zip chromium_src-59ff2d432815be7bd59b96b7567f68b592847ac5.tar.gz chromium_src-59ff2d432815be7bd59b96b7567f68b592847ac5.tar.bz2 |
Make GN's "check" run cleanly.
This fixes a bunch of minor issues, mostly header file dependencies for undeclared dependencies.
This also fixes some random TODOs.
R=scottmg@chromium.org
BUG=
Review URL: https://codereview.chromium.org/246303005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@265382 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto/BUILD.gn')
-rw-r--r-- | crypto/BUILD.gn | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/BUILD.gn b/crypto/BUILD.gn index 1f31f8b..2841b15 100644 --- a/crypto/BUILD.gn +++ b/crypto/BUILD.gn @@ -13,7 +13,6 @@ component("crypto") { "capi_util.cc", "capi_util.h", "crypto_export.h", - "crypto_module_blocking_password_delegate.h", "cssm_init.cc", "cssm_init.h", "curve25519.cc", @@ -174,13 +173,17 @@ if (is_win) { # OpenSSL/NSS but will use Windows APIs for that functionality. source_set("crypto_minimal_win") { sources = [ + "crypto_export.h", "hmac.cc", "hmac.h", "hmac_win.cc", + "scoped_capi_types.h", + "scoped_nss_types.h", "secure_util.cc", "secure_util.h", "symmetric_key.h", "symmetric_key_win.cc", + "third_party/nss/chromium-blapi.h", "third_party/nss/chromium-sha256.h", "third_party/nss/sha512.cc", ] |