OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_set("bindings") { | 5 source_set("bindings") { |
6 sources = [ | 6 sources = [ |
7 "array.h", | 7 "array.h", |
8 "callback.h", | 8 "callback.h", |
9 "error_handler.h", | 9 "error_handler.h", |
10 "interface_ptr.h", | 10 "interface_ptr.h", |
11 "message.h", | 11 "message.h", |
12 "message_filter.h", | 12 "message_filter.h", |
13 "no_interface.h", | 13 "no_interface.h", |
14 "string.h", | 14 "string.h", |
15 "struct_ptr.h", | 15 "struct_ptr.h", |
16 "sync_dispatcher.h", | |
17 "type_converter.h", | 16 "type_converter.h", |
18 "lib/array_internal.cc", | 17 "lib/array_internal.cc", |
19 "lib/array_internal.h", | 18 "lib/array_internal.h", |
20 "lib/array_serialization.h", | 19 "lib/array_serialization.h", |
21 "lib/bindings_internal.h", | 20 "lib/bindings_internal.h", |
22 "lib/bindings_serialization.cc", | 21 "lib/bindings_serialization.cc", |
23 "lib/bindings_serialization.h", | 22 "lib/bindings_serialization.h", |
24 "lib/bounds_checker.cc", | 23 "lib/bounds_checker.cc", |
25 "lib/bounds_checker.h", | 24 "lib/bounds_checker.h", |
26 "lib/buffer.h", | 25 "lib/buffer.h", |
(...skipping 11 matching lines...) Expand all Loading... |
38 "lib/message_internal.h", | 37 "lib/message_internal.h", |
39 "lib/message_queue.cc", | 38 "lib/message_queue.cc", |
40 "lib/message_queue.h", | 39 "lib/message_queue.h", |
41 "lib/no_interface.cc", | 40 "lib/no_interface.cc", |
42 "lib/router.cc", | 41 "lib/router.cc", |
43 "lib/router.h", | 42 "lib/router.h", |
44 "lib/shared_data.h", | 43 "lib/shared_data.h", |
45 "lib/shared_ptr.h", | 44 "lib/shared_ptr.h", |
46 "lib/string_serialization.cc", | 45 "lib/string_serialization.cc", |
47 "lib/string_serialization.h", | 46 "lib/string_serialization.h", |
48 "lib/sync_dispatcher.cc", | |
49 "lib/template_util.h", | 47 "lib/template_util.h", |
50 "lib/validation_errors.cc", | 48 "lib/validation_errors.cc", |
51 "lib/validation_errors.h", | 49 "lib/validation_errors.h", |
52 ] | 50 ] |
53 } | 51 } |
OLD | NEW |