| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "type_converter.h", | 83 "type_converter.h", |
| 84 ] | 84 ] |
| 85 | 85 |
| 86 public_deps = [ | 86 public_deps = [ |
| 87 ":callback", | 87 ":callback", |
| 88 "//base", | 88 "//base", |
| 89 "//ipc:param_traits", |
| 89 "//mojo/public/cpp/system", | 90 "//mojo/public/cpp/system", |
| 90 ] | 91 ] |
| 91 | 92 |
| 92 deps = [ | 93 deps = [ |
| 93 "//base", | 94 "//base", |
| 94 "//mojo/public/cpp/environment", | 95 "//mojo/public/cpp/environment", |
| 95 "//mojo/public/interfaces/bindings:bindings_cpp_sources", | 96 "//mojo/public/interfaces/bindings:bindings_cpp_sources", |
| 96 ] | 97 ] |
| 97 } | 98 } |
| 98 | 99 |
| 99 source_set("callback") { | 100 source_set("callback") { |
| 100 sources = [ | 101 sources = [ |
| 101 "callback.h", | 102 "callback.h", |
| 102 "lib/callback_internal.h", | 103 "lib/callback_internal.h", |
| 103 "lib/shared_data.h", | 104 "lib/shared_data.h", |
| 104 "lib/shared_ptr.h", | 105 "lib/shared_ptr.h", |
| 105 "lib/template_util.h", | 106 "lib/template_util.h", |
| 106 ] | 107 ] |
| 107 | 108 |
| 108 deps = [ | 109 deps = [ |
| 109 "//base", | 110 "//base", |
| 110 "//mojo/public/cpp/system", | 111 "//mojo/public/cpp/system", |
| 111 ] | 112 ] |
| 112 } | 113 } |
| OLD | NEW |