Files
sdk/runtime/bin/io_impl_sources.gni
Ryan Macnak 53733077b2 Revert "[standalone] Remove the fallback root certificates."
This reverts commit 039aef728a.

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 after 2142d8e148.
>
> 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>
2026-05-26 07:49:52 -07:00

102 lines
2.5 KiB
Plaintext

# Copyright (c) 2012, 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.
# This file contains some C++ sources for the dart:io library. The other
# implementation files are in builtin_impl_sources.gni.
io_impl_sources = [
"console.h",
"console_posix.cc",
"console_win.cc",
"eventhandler.cc",
"eventhandler.h",
"eventhandler_fuchsia.cc",
"eventhandler_fuchsia.h",
"eventhandler_linux.cc",
"eventhandler_linux.h",
"eventhandler_macos.cc",
"eventhandler_macos.h",
"eventhandler_win.cc",
"eventhandler_win.h",
"file_system_watcher.cc",
"file_system_watcher.h",
"file_system_watcher_fuchsia.cc",
"file_system_watcher_linux.cc",
"file_system_watcher_macos.cc",
"file_system_watcher_win.cc",
"filter.cc",
"filter.h",
"ifaddrs.cc",
"ifaddrs.h",
"io_service.cc",
"io_service.h",
"io_service_no_ssl.cc",
"io_service_no_ssl.h",
"namespace.cc",
"namespace.h",
"namespace_fuchsia.cc",
"namespace_fuchsia.h",
"namespace_linux.cc",
"namespace_macos.cc",
"namespace_win.cc",
"platform.cc",
"platform.h",
"platform_fuchsia.cc",
"platform_linux.cc",
"platform_macos.cc",
"platform_macos.h",
"platform_win.cc",
"process.cc",
"process.h",
"process_fuchsia.cc",
"process_linux.cc",
"process_macos.cc",
"process_win.cc",
"reference_counting.h",
"root_certificates_unsupported.cc",
"secure_socket_filter.cc",
"secure_socket_filter.h",
"secure_socket_unsupported.cc",
"secure_socket_utils.cc",
"secure_socket_utils.h",
"security_context.cc",
"security_context.h",
"security_context_fuchsia.cc",
"security_context_linux.cc",
"security_context_macos.cc",
"security_context_win.cc",
"socket.cc",
"socket.h",
"socket_base.cc",
"socket_base.h",
"socket_base_fuchsia.cc",
"socket_base_fuchsia.h",
"socket_base_linux.cc",
"socket_base_linux.h",
"socket_base_macos.cc",
"socket_base_macos.h",
"socket_base_posix.cc",
"socket_base_win.cc",
"socket_base_win.h",
"socket_fuchsia.cc",
"socket_linux.cc",
"socket_macos.cc",
"socket_win.cc",
"stdio.cc",
"stdio.h",
"stdio_fuchsia.cc",
"stdio_linux.cc",
"stdio_macos.cc",
"stdio_win.cc",
"sync_socket.cc",
"sync_socket.h",
"sync_socket_fuchsia.cc",
"sync_socket_linux.cc",
"sync_socket_macos.cc",
"sync_socket_win.cc",
"typed_data_utils.cc",
"typed_data_utils.h",
]
io_impl_tests = [ "secure_socket_utils_test.cc" ]