| 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 10 matching lines...) Expand all Loading... |
| 21 "interface_ptr_info.h", | 21 "interface_ptr_info.h", |
| 22 "interface_ptr_set.h", | 22 "interface_ptr_set.h", |
| 23 "interface_request.h", | 23 "interface_request.h", |
| 24 "lib/array_internal.cc", | 24 "lib/array_internal.cc", |
| 25 "lib/array_internal.h", | 25 "lib/array_internal.h", |
| 26 "lib/array_serialization.h", | 26 "lib/array_serialization.h", |
| 27 "lib/associated_group.cc", | 27 "lib/associated_group.cc", |
| 28 "lib/associated_interface_ptr_state.h", | 28 "lib/associated_interface_ptr_state.h", |
| 29 "lib/binding_state.h", | 29 "lib/binding_state.h", |
| 30 "lib/bindings_internal.h", | 30 "lib/bindings_internal.h", |
| 31 "lib/bounds_checker.cc", | |
| 32 "lib/bounds_checker.h", | |
| 33 "lib/buffer.h", | 31 "lib/buffer.h", |
| 34 "lib/connector.cc", | 32 "lib/connector.cc", |
| 35 "lib/connector.h", | 33 "lib/connector.h", |
| 36 "lib/control_message_handler.cc", | 34 "lib/control_message_handler.cc", |
| 37 "lib/control_message_handler.h", | 35 "lib/control_message_handler.h", |
| 38 "lib/control_message_proxy.cc", | 36 "lib/control_message_proxy.cc", |
| 39 "lib/control_message_proxy.h", | 37 "lib/control_message_proxy.h", |
| 40 "lib/filter_chain.cc", | 38 "lib/filter_chain.cc", |
| 41 "lib/filter_chain.h", | 39 "lib/filter_chain.h", |
| 42 "lib/fixed_buffer.cc", | 40 "lib/fixed_buffer.cc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "lib/serialization_forward.h", | 79 "lib/serialization_forward.h", |
| 82 "lib/serialization_util.cc", | 80 "lib/serialization_util.cc", |
| 83 "lib/serialization_util.h", | 81 "lib/serialization_util.h", |
| 84 "lib/string_serialization.h", | 82 "lib/string_serialization.h", |
| 85 "lib/string_traits_string16.cc", | 83 "lib/string_traits_string16.cc", |
| 86 "lib/sync_handle_registry.cc", | 84 "lib/sync_handle_registry.cc", |
| 87 "lib/sync_handle_watcher.cc", | 85 "lib/sync_handle_watcher.cc", |
| 88 "lib/sync_handle_watcher.h", | 86 "lib/sync_handle_watcher.h", |
| 89 "lib/union_accessor.h", | 87 "lib/union_accessor.h", |
| 90 "lib/validate_params.h", | 88 "lib/validate_params.h", |
| 89 "lib/validation_context.cc", |
| 90 "lib/validation_context.h", |
| 91 "lib/validation_errors.cc", | 91 "lib/validation_errors.cc", |
| 92 "lib/validation_errors.h", | 92 "lib/validation_errors.h", |
| 93 "lib/validation_util.cc", | 93 "lib/validation_util.cc", |
| 94 "lib/validation_util.h", | 94 "lib/validation_util.h", |
| 95 "map.h", | 95 "map.h", |
| 96 "map_traits.h", | 96 "map_traits.h", |
| 97 "map_traits_standard.h", | 97 "map_traits_standard.h", |
| 98 "map_traits_stl.h", | 98 "map_traits_stl.h", |
| 99 "message.h", | 99 "message.h", |
| 100 "message_filter.h", | 100 "message_filter.h", |
| (...skipping 62 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 |