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
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("bindings") {
sources = [
"allocation_scope.h",
"array.h",
"buffer.h",
"callback.h",
"error_handler.h",
"interface_ptr.h",
"message.h",
"no_interface.h",
"passable.h",
"sync_dispatcher.h",
"type_converter.h",
"lib/array.cc",
"lib/array_internal.h",
"lib/array_internal.cc",
"lib/bindings_internal.h",
"lib/bindings_serialization.cc",
"lib/bindings_serialization.h",
"lib/buffer.cc",
"lib/callback_internal.h",
"lib/connector.cc",
"lib/connector.h",
"lib/fixed_buffer.cc",
"lib/fixed_buffer.h",
"lib/message.cc",
"lib/message_builder.cc",
"lib/message_builder.h",
"lib/message_internal.h",
"lib/message_queue.cc",
"lib/message_queue.h",
"lib/no_interface.cc",
"lib/router.cc",
"lib/router.h",
"lib/scratch_buffer.cc",
"lib/scratch_buffer.h",
"lib/shared_data.h",
"lib/shared_ptr.h",
"lib/sync_dispatcher.cc",
]
}
|