| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 public_deps = [ | 95 public_deps = [ |
| 96 ":callback", | 96 ":callback", |
| 97 "//base", | 97 "//base", |
| 98 "//ipc:param_traits", | 98 "//ipc:param_traits", |
| 99 "//mojo/public/cpp/system", | 99 "//mojo/public/cpp/system", |
| 100 ] | 100 ] |
| 101 | 101 |
| 102 deps = [ | 102 deps = [ |
| 103 "//base", | 103 "//base", |
| 104 "//mojo/message_pump", |
| 104 "//mojo/public/interfaces/bindings:bindings_cpp_sources", | 105 "//mojo/public/interfaces/bindings:bindings_cpp_sources", |
| 105 ] | 106 ] |
| 106 } | 107 } |
| 107 | 108 |
| 108 source_set("callback") { | 109 source_set("callback") { |
| 109 sources = [ | 110 sources = [ |
| 110 "callback.h", | 111 "callback.h", |
| 111 "lib/callback_internal.h", | 112 "lib/callback_internal.h", |
| 112 "lib/shared_data.h", | 113 "lib/shared_data.h", |
| 113 "lib/shared_ptr.h", | 114 "lib/shared_ptr.h", |
| 114 "lib/template_util.h", | 115 "lib/template_util.h", |
| 115 ] | 116 ] |
| 116 | 117 |
| 117 deps = [ | 118 deps = [ |
| 118 "//base", | 119 "//base", |
| 119 "//mojo/public/cpp/system", | 120 "//mojo/public/cpp/system", |
| 120 ] | 121 ] |
| 121 } | 122 } |
| OLD | NEW |