| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "lib/validation_util.cc", | 73 "lib/validation_util.cc", |
| 74 "lib/validation_util.h", | 74 "lib/validation_util.h", |
| 75 "lib/value_traits.h", | 75 "lib/value_traits.h", |
| 76 "map.h", | 76 "map.h", |
| 77 "message.h", | 77 "message.h", |
| 78 "message_filter.h", | 78 "message_filter.h", |
| 79 "no_interface.h", | 79 "no_interface.h", |
| 80 "string.h", | 80 "string.h", |
| 81 "strong_binding.h", | 81 "strong_binding.h", |
| 82 "struct_ptr.h", | 82 "struct_ptr.h", |
| 83 "struct_traits.h", |
| 83 "type_converter.h", | 84 "type_converter.h", |
| 84 ] | 85 ] |
| 85 | 86 |
| 86 public_deps = [ | 87 public_deps = [ |
| 87 ":callback", | 88 ":callback", |
| 88 "//base", | 89 "//base", |
| 89 "//ipc:param_traits", | 90 "//ipc:param_traits", |
| 90 "//mojo/public/cpp/system", | 91 "//mojo/public/cpp/system", |
| 91 ] | 92 ] |
| 92 | 93 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 104 "lib/shared_data.h", | 105 "lib/shared_data.h", |
| 105 "lib/shared_ptr.h", | 106 "lib/shared_ptr.h", |
| 106 "lib/template_util.h", | 107 "lib/template_util.h", |
| 107 ] | 108 ] |
| 108 | 109 |
| 109 deps = [ | 110 deps = [ |
| 110 "//base", | 111 "//base", |
| 111 "//mojo/public/cpp/system", | 112 "//mojo/public/cpp/system", |
| 112 ] | 113 ] |
| 113 } | 114 } |
| OLD | NEW |