53733077b2
This reverts commit039aef728a. Reason for revert: b/515601247 Original change's description: > [standalone] Remove the fallback root certificates. > > The discovery of the system root certificates is more robust after2142d8e148. > > TEST=ci > Change-Id: I8215cb92f98e620b82f21261c13e061a2b488b5d > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/433923 > Reviewed-by: Slava Egorov <vegorov@google.com> > Commit-Queue: Ryan Macnak <rmacnak@google.com> TEST=ci Change-Id: Ib07de221ff1160461d930f7165a7cd8179b4e3f3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/506100 Commit-Queue: Ryan Macnak <rmacnak@google.com> Reviewed-by: Samuel Rawlins <srawlins@google.com>
23 lines
726 B
C++
23 lines
726 B
C++
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#if !defined(DART_IO_SECURE_SOCKET_DISABLED)
|
|
|
|
#include "platform/globals.h"
|
|
#if defined(DART_HOST_OS_MACOS) || defined(DART_HOST_OS_ANDROID) || \
|
|
defined(DART_IO_ROOT_CERTS_DISABLED)
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
const unsigned char* root_certificates_pem = nullptr;
|
|
unsigned int root_certificates_pem_length = 0;
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // defined(DART_HOST_OS_MACOS) || defined(DART_HOST_OS_ANDROID) || ...
|
|
|
|
#endif // !defined(DART_IO_SECURE_SOCKET_DISABLED)
|