| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "lib/router.cc", | 72 "lib/router.cc", |
| 73 "lib/router.h", | 73 "lib/router.h", |
| 74 "lib/scoped_interface_endpoint_handle.cc", | 74 "lib/scoped_interface_endpoint_handle.cc", |
| 75 "lib/serialization.h", | 75 "lib/serialization.h", |
| 76 "lib/serialization_context.cc", | 76 "lib/serialization_context.cc", |
| 77 "lib/serialization_context.h", | 77 "lib/serialization_context.h", |
| 78 "lib/serialization_forward.h", | 78 "lib/serialization_forward.h", |
| 79 "lib/serialization_util.cc", | 79 "lib/serialization_util.cc", |
| 80 "lib/serialization_util.h", | 80 "lib/serialization_util.h", |
| 81 "lib/string_serialization.h", | 81 "lib/string_serialization.h", |
| 82 "lib/string_traits_nullable_string16.cc", |
| 82 "lib/string_traits_string16.cc", | 83 "lib/string_traits_string16.cc", |
| 83 "lib/sync_handle_registry.cc", | 84 "lib/sync_handle_registry.cc", |
| 84 "lib/sync_handle_registry.h", | 85 "lib/sync_handle_registry.h", |
| 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/union_accessor.h", | 88 "lib/union_accessor.h", |
| 88 "lib/validate_params.h", | 89 "lib/validate_params.h", |
| 89 "lib/validation_errors.cc", | 90 "lib/validation_errors.cc", |
| 90 "lib/validation_errors.h", | 91 "lib/validation_errors.h", |
| 91 "lib/validation_util.cc", | 92 "lib/validation_util.cc", |
| 92 "lib/validation_util.h", | 93 "lib/validation_util.h", |
| 93 "map.h", | 94 "map.h", |
| 94 "map_traits.h", | 95 "map_traits.h", |
| 95 "map_traits_standard.h", | 96 "map_traits_standard.h", |
| 96 "map_traits_stl.h", | 97 "map_traits_stl.h", |
| 97 "message.h", | 98 "message.h", |
| 98 "message_filter.h", | 99 "message_filter.h", |
| 99 "native_struct.h", | 100 "native_struct.h", |
| 100 "no_interface.h", | 101 "no_interface.h", |
| 101 "scoped_interface_endpoint_handle.h", | 102 "scoped_interface_endpoint_handle.h", |
| 102 "stl_converters.h", | 103 "stl_converters.h", |
| 103 "string.h", | 104 "string.h", |
| 104 "string_traits.h", | 105 "string_traits.h", |
| 106 "string_traits_nullable_string16.h", |
| 105 "string_traits_standard.h", | 107 "string_traits_standard.h", |
| 106 "string_traits_stl.h", | 108 "string_traits_stl.h", |
| 107 "string_traits_string16.h", | 109 "string_traits_string16.h", |
| 108 "string_traits_string_piece.h", | 110 "string_traits_string_piece.h", |
| 109 "strong_binding.h", | 111 "strong_binding.h", |
| 110 "struct_ptr.h", | 112 "struct_ptr.h", |
| 111 "type_converter.h", | 113 "type_converter.h", |
| 112 ] | 114 ] |
| 113 | 115 |
| 114 public_deps = [ | 116 public_deps = [ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 ] | 161 ] |
| 160 | 162 |
| 161 public_deps = [ | 163 public_deps = [ |
| 162 ":bindings", | 164 ":bindings", |
| 163 "//third_party/WebKit/Source/wtf", | 165 "//third_party/WebKit/Source/wtf", |
| 164 ] | 166 ] |
| 165 | 167 |
| 166 public_configs = [ "//third_party/WebKit/Source:config" ] | 168 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 167 } | 169 } |
| 168 } | 170 } |
| OLD | NEW |