| 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 "associated_binding.h", | 8 "associated_binding.h", |
| 9 "associated_group.h", | 9 "associated_group.h", |
| 10 "associated_interface_ptr.h", | 10 "associated_interface_ptr.h", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "lib/pipe_control_message_proxy.cc", | 65 "lib/pipe_control_message_proxy.cc", |
| 66 "lib/pipe_control_message_proxy.h", | 66 "lib/pipe_control_message_proxy.h", |
| 67 "lib/router.cc", | 67 "lib/router.cc", |
| 68 "lib/router.h", | 68 "lib/router.h", |
| 69 "lib/scoped_interface_endpoint_handle.cc", | 69 "lib/scoped_interface_endpoint_handle.cc", |
| 70 "lib/scoped_interface_endpoint_handle.h", | 70 "lib/scoped_interface_endpoint_handle.h", |
| 71 "lib/serialization.h", | 71 "lib/serialization.h", |
| 72 "lib/serialization_forward.h", | 72 "lib/serialization_forward.h", |
| 73 "lib/string_serialization.cc", | 73 "lib/string_serialization.cc", |
| 74 "lib/string_serialization.h", | 74 "lib/string_serialization.h", |
| 75 "lib/sync_handle_registry.cc", |
| 76 "lib/sync_handle_registry.h", |
| 75 "lib/sync_handle_watcher.cc", | 77 "lib/sync_handle_watcher.cc", |
| 76 "lib/sync_handle_watcher.h", | 78 "lib/sync_handle_watcher.h", |
| 77 "lib/union_accessor.h", | 79 "lib/union_accessor.h", |
| 78 "lib/validate_params.h", | 80 "lib/validate_params.h", |
| 79 "lib/validation_errors.cc", | 81 "lib/validation_errors.cc", |
| 80 "lib/validation_errors.h", | 82 "lib/validation_errors.h", |
| 81 "lib/validation_util.cc", | 83 "lib/validation_util.cc", |
| 82 "lib/validation_util.h", | 84 "lib/validation_util.h", |
| 83 "lib/value_traits.h", | 85 "lib/value_traits.h", |
| 84 | 86 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "wtf_array.h", | 136 "wtf_array.h", |
| 135 ] | 137 ] |
| 136 | 138 |
| 137 public_deps = [ | 139 public_deps = [ |
| 138 ":bindings", | 140 ":bindings", |
| 139 "//third_party/WebKit/Source/wtf", | 141 "//third_party/WebKit/Source/wtf", |
| 140 ] | 142 ] |
| 141 | 143 |
| 142 public_configs = [ "//third_party/WebKit/Source:config" ] | 144 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 143 } | 145 } |
| OLD | NEW |