1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
blink_core_sources_streams = [
"byte_length_queuing_strategy.cc",
"byte_length_queuing_strategy.h",
"byte_stream_tee_engine.cc",
"byte_stream_tee_engine.h",
"count_queuing_strategy.cc",
"count_queuing_strategy.h",
"miscellaneous_operations.cc",
"miscellaneous_operations.h",
"pipe_options.cc",
"pipe_options.h",
"pipe_to_engine.cc",
"pipe_to_engine.h",
"queue_with_sizes.cc",
"queue_with_sizes.h",
"queuing_strategy_common.cc",
"queuing_strategy_common.h",
"read_into_request.h",
"read_request.h",
"readable_byte_stream_controller.cc",
"readable_byte_stream_controller.h",
"readable_stream.cc",
"readable_stream.h",
"readable_stream_byob_reader.cc",
"readable_stream_byob_reader.h",
"readable_stream_byob_request.cc",
"readable_stream_byob_request.h",
"readable_stream_controller.h",
"readable_stream_default_controller.cc",
"readable_stream_default_controller.h",
"readable_stream_default_controller_with_script_scope.cc",
"readable_stream_default_controller_with_script_scope.h",
"readable_stream_default_reader.cc",
"readable_stream_default_reader.h",
"readable_stream_generic_reader.cc",
"readable_stream_generic_reader.h",
"readable_stream_transferring_optimizer.h",
"stream_algorithms.h",
"tee_engine.cc",
"tee_engine.h",
"transferable_streams.cc",
"transferable_streams.h",
"transform_stream.cc",
"transform_stream.h",
"transform_stream_default_controller.cc",
"transform_stream_default_controller.h",
"transform_stream_transformer.h",
"underlying_byte_source_base.h",
"underlying_sink_base.cc",
"underlying_sink_base.h",
"underlying_source_base.cc",
"underlying_source_base.h",
"writable_stream.cc",
"writable_stream.h",
"writable_stream_default_controller.cc",
"writable_stream_default_controller.h",
"writable_stream_default_writer.cc",
"writable_stream_default_writer.h",
"writable_stream_transferring_optimizer.h",
]
blink_core_tests_streams = [
"miscellaneous_operations_test.cc",
"queue_with_sizes_test.cc",
"readable_stream_test.cc",
"test_utils.cc",
"test_utils.h",
"transferable_streams_test.cc",
"transform_stream_test.cc",
"writable_stream_test.cc",
]
|