| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "lib/serialization_context.cc", | 77 "lib/serialization_context.cc", |
| 78 "lib/serialization_context.h", | 78 "lib/serialization_context.h", |
| 79 "lib/serialization_forward.h", | 79 "lib/serialization_forward.h", |
| 80 "lib/serialization_util.cc", | 80 "lib/serialization_util.cc", |
| 81 "lib/serialization_util.h", | 81 "lib/serialization_util.h", |
| 82 "lib/string_serialization.h", | 82 "lib/string_serialization.h", |
| 83 "lib/string_traits_string16.cc", | 83 "lib/string_traits_string16.cc", |
| 84 "lib/sync_handle_registry.cc", | 84 "lib/sync_handle_registry.cc", |
| 85 "lib/sync_handle_watcher.cc", | 85 "lib/sync_handle_watcher.cc", |
| 86 "lib/sync_handle_watcher.h", | 86 "lib/sync_handle_watcher.h", |
| 87 "lib/template_util.h", |
| 87 "lib/union_accessor.h", | 88 "lib/union_accessor.h", |
| 88 "lib/validate_params.h", | 89 "lib/validate_params.h", |
| 89 "lib/validation_context.cc", | 90 "lib/validation_context.cc", |
| 90 "lib/validation_context.h", | 91 "lib/validation_context.h", |
| 91 "lib/validation_errors.cc", | 92 "lib/validation_errors.cc", |
| 92 "lib/validation_errors.h", | 93 "lib/validation_errors.h", |
| 93 "lib/validation_util.cc", | 94 "lib/validation_util.cc", |
| 94 "lib/validation_util.h", | 95 "lib/validation_util.h", |
| 95 "map.h", | 96 "map.h", |
| 96 "map_traits.h", | 97 "map_traits.h", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 125 | 126 |
| 126 deps = [ | 127 deps = [ |
| 127 "//base", | 128 "//base", |
| 128 "//mojo/public/interfaces/bindings:bindings_cpp_sources", | 129 "//mojo/public/interfaces/bindings:bindings_cpp_sources", |
| 129 ] | 130 ] |
| 130 } | 131 } |
| 131 | 132 |
| 132 source_set("callback") { | 133 source_set("callback") { |
| 133 sources = [ | 134 sources = [ |
| 134 "callback.h", | 135 "callback.h", |
| 135 "lib/callback_internal.h", | |
| 136 "lib/shared_data.h", | |
| 137 "lib/shared_ptr.h", | |
| 138 "lib/template_util.h", | |
| 139 ] | 136 ] |
| 140 | 137 |
| 141 deps = [ | 138 public_deps = [ |
| 142 "//base", | 139 "//base", |
| 143 "//mojo/public/cpp/system", | |
| 144 ] | 140 ] |
| 145 } | 141 } |
| 146 | 142 |
| 147 source_set("struct_traits") { | 143 source_set("struct_traits") { |
| 148 sources = [ | 144 sources = [ |
| 149 "struct_traits.h", | 145 "struct_traits.h", |
| 150 ] | 146 ] |
| 151 } | 147 } |
| 152 | 148 |
| 153 if (!is_ios) { | 149 if (!is_ios) { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 165 ] | 161 ] |
| 166 | 162 |
| 167 public_deps = [ | 163 public_deps = [ |
| 168 ":bindings", | 164 ":bindings", |
| 169 "//third_party/WebKit/Source/wtf", | 165 "//third_party/WebKit/Source/wtf", |
| 170 ] | 166 ] |
| 171 | 167 |
| 172 public_configs = [ "//third_party/WebKit/Source:config" ] | 168 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 173 } | 169 } |
| 174 } | 170 } |
| OLD | NEW |