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 "array_traits.h", | 8 "array_traits.h", |
9 "array_traits_carray.h", | 9 "array_traits_carray.h", |
10 "array_traits_standard.h", | 10 "array_traits_standard.h", |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "lib/router.h", | 74 "lib/router.h", |
75 "lib/scoped_interface_endpoint_handle.cc", | 75 "lib/scoped_interface_endpoint_handle.cc", |
76 "lib/serialization.h", | 76 "lib/serialization.h", |
77 "lib/serialization_context.cc", | 77 "lib/serialization_context.cc", |
78 "lib/serialization_context.h", | 78 "lib/serialization_context.h", |
79 "lib/serialization_forward.h", | 79 "lib/serialization_forward.h", |
80 "lib/serialization_util.cc", | 80 "lib/serialization_util.cc", |
81 "lib/serialization_util.h", | 81 "lib/serialization_util.h", |
82 "lib/string_serialization.h", | 82 "lib/string_serialization.h", |
83 "lib/string_traits_string16.cc", | 83 "lib/string_traits_string16.cc", |
| 84 "lib/sync_call_restrictions.cc", |
84 "lib/sync_handle_registry.cc", | 85 "lib/sync_handle_registry.cc", |
85 "lib/sync_handle_watcher.cc", | 86 "lib/sync_handle_watcher.cc", |
86 "lib/sync_handle_watcher.h", | 87 "lib/sync_handle_watcher.h", |
87 "lib/template_util.h", | 88 "lib/template_util.h", |
88 "lib/union_accessor.h", | 89 "lib/union_accessor.h", |
89 "lib/validate_params.h", | 90 "lib/validate_params.h", |
90 "lib/validation_context.cc", | 91 "lib/validation_context.cc", |
91 "lib/validation_context.h", | 92 "lib/validation_context.h", |
92 "lib/validation_errors.cc", | 93 "lib/validation_errors.cc", |
93 "lib/validation_errors.h", | 94 "lib/validation_errors.h", |
(...skipping 11 matching lines...) Expand all Loading... |
105 "scoped_interface_endpoint_handle.h", | 106 "scoped_interface_endpoint_handle.h", |
106 "stl_converters.h", | 107 "stl_converters.h", |
107 "string.h", | 108 "string.h", |
108 "string_traits.h", | 109 "string_traits.h", |
109 "string_traits_standard.h", | 110 "string_traits_standard.h", |
110 "string_traits_stl.h", | 111 "string_traits_stl.h", |
111 "string_traits_string16.h", | 112 "string_traits_string16.h", |
112 "string_traits_string_piece.h", | 113 "string_traits_string_piece.h", |
113 "strong_binding.h", | 114 "strong_binding.h", |
114 "struct_ptr.h", | 115 "struct_ptr.h", |
| 116 "sync_call_restrictions.h", |
115 "sync_handle_registry.h", | 117 "sync_handle_registry.h", |
116 "type_converter.h", | 118 "type_converter.h", |
117 ] | 119 ] |
118 | 120 |
119 public_deps = [ | 121 public_deps = [ |
120 ":struct_traits", | 122 ":struct_traits", |
121 "//base", | 123 "//base", |
122 "//ipc:param_traits", | 124 "//ipc:param_traits", |
123 "//mojo/public/cpp/system", | 125 "//mojo/public/cpp/system", |
124 ] | 126 ] |
(...skipping 25 matching lines...) Expand all Loading... |
150 ] | 152 ] |
151 | 153 |
152 public_deps = [ | 154 public_deps = [ |
153 ":bindings", | 155 ":bindings", |
154 "//third_party/WebKit/Source/wtf", | 156 "//third_party/WebKit/Source/wtf", |
155 ] | 157 ] |
156 | 158 |
157 public_configs = [ "//third_party/WebKit/Source:config" ] | 159 public_configs = [ "//third_party/WebKit/Source:config" ] |
158 } | 160 } |
159 } | 161 } |
OLD | NEW |