Add crypto to the list of "all" projects.
BUG=none TEST=none Review URL: http://codereview.chromium.org/6850032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81763 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
@ -13,6 +13,7 @@
|
||||
'../base/base.gyp:*',
|
||||
'../chrome/browser/sync/tools/sync_tools.gyp:*',
|
||||
'../chrome/chrome.gyp:*',
|
||||
'../crypto/crypto.gyp:*',
|
||||
'../ui/ui.gyp:*',
|
||||
'../gpu/gpu.gyp:*',
|
||||
'../gpu/demos/demos.gyp:*',
|
||||
@ -152,6 +153,7 @@
|
||||
'../chrome/chrome.gyp:sync_unit_tests',
|
||||
'../chrome/chrome.gyp:ui_tests',
|
||||
'../chrome/chrome.gyp:unit_tests',
|
||||
'../crypto/crypto.gyp:crypto_unittests',
|
||||
'../ui/ui.gyp:gfx_unittests',
|
||||
'../gpu/gpu.gyp:gpu_unittests',
|
||||
'../ipc/ipc.gyp:ipc_tests',
|
||||
@ -209,6 +211,7 @@
|
||||
'../chrome/chrome.gyp:sync_unit_tests',
|
||||
'../chrome/chrome.gyp:ui_tests',
|
||||
'../chrome/chrome.gyp:unit_tests',
|
||||
'../crypto/crypto.gyp:crypto_unittests',
|
||||
'../ui/ui.gyp:gfx_unittests',
|
||||
'../gpu/gpu.gyp:gpu_unittests',
|
||||
'../ipc/ipc.gyp:ipc_tests',
|
||||
@ -361,6 +364,7 @@
|
||||
'type': 'none',
|
||||
'dependencies': [
|
||||
'../base/base.gyp:base_unittests',
|
||||
'../crypto/crypto.gyp:crypto_unittests',
|
||||
'temp_gyp/googleurl.gyp:googleurl_unittests',
|
||||
'../net/net.gyp:net_unittests',
|
||||
'../ipc/ipc.gyp:ipc_tests',
|
||||
@ -377,6 +381,7 @@
|
||||
'dependencies': [
|
||||
'../app/app.gyp:app_unittests',
|
||||
'../base/base.gyp:base_unittests',
|
||||
'../crypto/crypto.gyp:crypto_unittests',
|
||||
'temp_gyp/googleurl.gyp:googleurl_unittests',
|
||||
'../ipc/ipc.gyp:ipc_tests',
|
||||
'../media/media.gyp:media_unittests',
|
||||
@ -460,6 +465,7 @@
|
||||
'../base/base.gyp:base_unittests',
|
||||
'../chrome/app/locales/locales.gyp:*',
|
||||
'../chrome/chrome.gyp:sync_unit_tests',
|
||||
'../crypto/crypto.gyp:crypto_unittests',
|
||||
'../ipc/ipc.gyp:ipc_tests',
|
||||
'../jingle/jingle.gyp:jingle_unittests',
|
||||
'../media/media.gyp:media_unittests',
|
||||
@ -533,6 +539,7 @@
|
||||
'../chrome/chrome.gyp:ui_tests',
|
||||
'../chrome/chrome.gyp:unit_tests',
|
||||
'../chrome/chrome.gyp:url_fetch_test',
|
||||
'../crypto/crypto.gyp:crypto_unittests',
|
||||
'../ui/ui.gyp:gfx_unittests',
|
||||
'../ipc/ipc.gyp:ipc_tests',
|
||||
'../jingle/jingle.gyp:jingle_unittests',
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include <pk11pub.h>
|
||||
|
||||
#include "base/memory/scoped_ptr.h"
|
||||
#include "base/nss_util.h"
|
||||
#include "crypto/nss_util.h"
|
||||
#include "testing/gtest/include/gtest/gtest.h"
|
||||
|
||||
namespace crypto {
|
||||
|
@ -9,7 +9,7 @@ int main(int argc, char** argv) {
|
||||
#if defined(USE_NSS)
|
||||
// This is most likely not needed, but it basically replaces a similar call
|
||||
// that was performed on test_support_base.
|
||||
TODO(rvargas) Bug 79359: remove this.
|
||||
// TODO(rvargas) Bug 79359: remove this.
|
||||
crypto::EnsureNSSInit();
|
||||
#endif // defined(USE_NSS)
|
||||
|
||||
|
Reference in New Issue
Block a user