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", | |
9 "error_handler.h", | 8 "error_handler.h", |
10 "interface_ptr.h", | 9 "interface_ptr.h", |
11 "message.h", | 10 "message.h", |
12 "message_filter.h", | 11 "message_filter.h", |
13 "no_interface.h", | 12 "no_interface.h", |
14 "string.h", | 13 "string.h", |
15 "struct_ptr.h", | 14 "struct_ptr.h", |
16 "type_converter.h", | 15 "type_converter.h", |
17 "lib/array_internal.cc", | 16 "lib/array_internal.cc", |
18 "lib/array_internal.h", | 17 "lib/array_internal.h", |
19 "lib/array_serialization.h", | 18 "lib/array_serialization.h", |
20 "lib/bindings_internal.h", | 19 "lib/bindings_internal.h", |
21 "lib/bindings_serialization.cc", | 20 "lib/bindings_serialization.cc", |
22 "lib/bindings_serialization.h", | 21 "lib/bindings_serialization.h", |
23 "lib/bounds_checker.cc", | 22 "lib/bounds_checker.cc", |
24 "lib/bounds_checker.h", | 23 "lib/bounds_checker.h", |
25 "lib/buffer.h", | 24 "lib/buffer.h", |
26 "lib/callback_internal.h", | |
27 "lib/connector.cc", | 25 "lib/connector.cc", |
28 "lib/connector.h", | 26 "lib/connector.h", |
29 "lib/filter_chain.cc", | 27 "lib/filter_chain.cc", |
30 "lib/filter_chain.h", | 28 "lib/filter_chain.h", |
31 "lib/fixed_buffer.cc", | 29 "lib/fixed_buffer.cc", |
32 "lib/fixed_buffer.h", | 30 "lib/fixed_buffer.h", |
33 "lib/message.cc", | 31 "lib/message.cc", |
34 "lib/message_builder.cc", | 32 "lib/message_builder.cc", |
35 "lib/message_builder.h", | 33 "lib/message_builder.h", |
36 "lib/message_filter.cc", | 34 "lib/message_filter.cc", |
37 "lib/message_header_validator.cc", | 35 "lib/message_header_validator.cc", |
38 "lib/message_header_validator.h", | 36 "lib/message_header_validator.h", |
39 "lib/message_internal.h", | 37 "lib/message_internal.h", |
40 "lib/message_queue.cc", | 38 "lib/message_queue.cc", |
41 "lib/message_queue.h", | 39 "lib/message_queue.h", |
42 "lib/no_interface.cc", | 40 "lib/no_interface.cc", |
43 "lib/router.cc", | 41 "lib/router.cc", |
44 "lib/router.h", | 42 "lib/router.h", |
45 "lib/shared_data.h", | |
46 "lib/shared_ptr.h", | |
47 "lib/string_serialization.cc", | 43 "lib/string_serialization.cc", |
48 "lib/string_serialization.h", | 44 "lib/string_serialization.h", |
49 "lib/template_util.h", | |
50 "lib/validation_errors.cc", | 45 "lib/validation_errors.cc", |
51 "lib/validation_errors.h", | 46 "lib/validation_errors.h", |
52 ] | 47 ] |
48 | |
49 deps = [ | |
50 ":callback", | |
51 "//mojo/public/cpp/environment", | |
52 "//mojo/public/cpp/system", | |
53 ] | |
53 } | 54 } |
55 | |
56 source_set("callback") { | |
57 sources = [ | |
58 "callback.h", | |
59 "lib/callback_internal.h", | |
60 "lib/template_util.h", | |
61 "lib/shared_data.h", | |
62 "lib/shared_ptr.h", | |
63 ] | |
64 | |
65 deps = [ "//mojo/public/cpp/system" ] | |
66 } | |
67 | |
viettrungluu
2014/09/26 00:34:41
" x2
| |
68 | |
OLD | NEW |