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 "allocation_scope.h", | 7 "allocation_scope.h", |
8 "array.h", | 8 "array.h", |
9 "buffer.h", | 9 "buffer.h", |
10 "callback.h", | 10 "callback.h", |
(...skipping 15 matching lines...) Expand all Loading... |
26 "lib/connector.cc", | 26 "lib/connector.cc", |
27 "lib/connector.h", | 27 "lib/connector.h", |
28 "lib/fixed_buffer.cc", | 28 "lib/fixed_buffer.cc", |
29 "lib/fixed_buffer.h", | 29 "lib/fixed_buffer.h", |
30 "lib/message.cc", | 30 "lib/message.cc", |
31 "lib/message_builder.cc", | 31 "lib/message_builder.cc", |
32 "lib/message_builder.h", | 32 "lib/message_builder.h", |
33 "lib/message_internal.h", | 33 "lib/message_internal.h", |
34 "lib/message_queue.cc", | 34 "lib/message_queue.cc", |
35 "lib/message_queue.h", | 35 "lib/message_queue.h", |
| 36 "lib/message_validator.cc", |
| 37 "lib/message_validator.h", |
36 "lib/no_interface.cc", | 38 "lib/no_interface.cc", |
37 "lib/router.cc", | 39 "lib/router.cc", |
38 "lib/router.h", | 40 "lib/router.h", |
39 "lib/scratch_buffer.cc", | 41 "lib/scratch_buffer.cc", |
40 "lib/scratch_buffer.h", | 42 "lib/scratch_buffer.h", |
41 "lib/shared_data.h", | 43 "lib/shared_data.h", |
42 "lib/shared_ptr.h", | 44 "lib/shared_ptr.h", |
43 "lib/sync_dispatcher.cc", | 45 "lib/sync_dispatcher.cc", |
| 46 "lib/validator_chain.cc", |
| 47 "lib/validator_chain.h", |
44 ] | 48 ] |
45 } | 49 } |
OLD | NEW |