| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "lib/scoped_interface_endpoint_handle.cc", | 77 "lib/scoped_interface_endpoint_handle.cc", |
| 78 "lib/serialization.h", | 78 "lib/serialization.h", |
| 79 "lib/serialization_context.cc", | 79 "lib/serialization_context.cc", |
| 80 "lib/serialization_context.h", | 80 "lib/serialization_context.h", |
| 81 "lib/serialization_forward.h", | 81 "lib/serialization_forward.h", |
| 82 "lib/serialization_util.cc", | 82 "lib/serialization_util.cc", |
| 83 "lib/serialization_util.h", | 83 "lib/serialization_util.h", |
| 84 "lib/string_serialization.h", | 84 "lib/string_serialization.h", |
| 85 "lib/string_traits_string16.cc", | 85 "lib/string_traits_string16.cc", |
| 86 "lib/sync_handle_registry.cc", | 86 "lib/sync_handle_registry.cc", |
| 87 "lib/sync_handle_registry.h", | |
| 88 "lib/sync_handle_watcher.cc", | 87 "lib/sync_handle_watcher.cc", |
| 89 "lib/sync_handle_watcher.h", | 88 "lib/sync_handle_watcher.h", |
| 90 "lib/union_accessor.h", | 89 "lib/union_accessor.h", |
| 91 "lib/validate_params.h", | 90 "lib/validate_params.h", |
| 92 "lib/validation_errors.cc", | 91 "lib/validation_errors.cc", |
| 93 "lib/validation_errors.h", | 92 "lib/validation_errors.h", |
| 94 "lib/validation_util.cc", | 93 "lib/validation_util.cc", |
| 95 "lib/validation_util.h", | 94 "lib/validation_util.h", |
| 96 "map.h", | 95 "map.h", |
| 97 "map_traits.h", | 96 "map_traits.h", |
| 98 "map_traits_standard.h", | 97 "map_traits_standard.h", |
| 99 "map_traits_stl.h", | 98 "map_traits_stl.h", |
| 100 "message.h", | 99 "message.h", |
| 101 "message_filter.h", | 100 "message_filter.h", |
| 102 "native_enum.h", | 101 "native_enum.h", |
| 103 "native_struct.h", | 102 "native_struct.h", |
| 104 "no_interface.h", | 103 "no_interface.h", |
| 105 "scoped_interface_endpoint_handle.h", | 104 "scoped_interface_endpoint_handle.h", |
| 106 "stl_converters.h", | 105 "stl_converters.h", |
| 107 "string.h", | 106 "string.h", |
| 108 "string_traits.h", | 107 "string_traits.h", |
| 109 "string_traits_standard.h", | 108 "string_traits_standard.h", |
| 110 "string_traits_stl.h", | 109 "string_traits_stl.h", |
| 111 "string_traits_string16.h", | 110 "string_traits_string16.h", |
| 112 "string_traits_string_piece.h", | 111 "string_traits_string_piece.h", |
| 113 "strong_binding.h", | 112 "strong_binding.h", |
| 114 "struct_ptr.h", | 113 "struct_ptr.h", |
| 114 "sync_handle_registry.h", |
| 115 "type_converter.h", | 115 "type_converter.h", |
| 116 ] | 116 ] |
| 117 | 117 |
| 118 public_deps = [ | 118 public_deps = [ |
| 119 ":callback", | 119 ":callback", |
| 120 ":struct_traits", | 120 ":struct_traits", |
| 121 "//base", | 121 "//base", |
| 122 "//ipc:param_traits", | 122 "//ipc:param_traits", |
| 123 "//mojo/public/cpp/system", | 123 "//mojo/public/cpp/system", |
| 124 ] | 124 ] |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 ] | 163 ] |
| 164 | 164 |
| 165 public_deps = [ | 165 public_deps = [ |
| 166 ":bindings", | 166 ":bindings", |
| 167 "//third_party/WebKit/Source/wtf", | 167 "//third_party/WebKit/Source/wtf", |
| 168 ] | 168 ] |
| 169 | 169 |
| 170 public_configs = [ "//third_party/WebKit/Source:config" ] | 170 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 171 } | 171 } |
| 172 } | 172 } |
| OLD | NEW |