| 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 interfaces_bindings_gen_dir = "$root_gen_dir/mojo/public/interfaces/bindings" | 5 interfaces_bindings_gen_dir = "$root_gen_dir/mojo/public/interfaces/bindings" |
| 6 | 6 |
| 7 component("bindings") { | 7 component("bindings") { |
| 8 sources = [ | 8 sources = [ |
| 9 # Normally, targets should depend on the source_sets generated by mojom | 9 # Normally, targets should depend on the source_sets generated by mojom |
| 10 # targets. However, the generated source_sets use portions of the bindings | 10 # targets. However, the generated source_sets use portions of the bindings |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "lib/serialization_context.cc", | 98 "lib/serialization_context.cc", |
| 99 "lib/serialization_context.h", | 99 "lib/serialization_context.h", |
| 100 "lib/serialization_forward.h", | 100 "lib/serialization_forward.h", |
| 101 "lib/serialization_util.h", | 101 "lib/serialization_util.h", |
| 102 "lib/string_serialization.h", | 102 "lib/string_serialization.h", |
| 103 "lib/string_traits_string16.cc", | 103 "lib/string_traits_string16.cc", |
| 104 "lib/sync_call_restrictions.cc", | 104 "lib/sync_call_restrictions.cc", |
| 105 "lib/sync_handle_registry.cc", | 105 "lib/sync_handle_registry.cc", |
| 106 "lib/sync_handle_watcher.cc", | 106 "lib/sync_handle_watcher.cc", |
| 107 "lib/template_util.h", | 107 "lib/template_util.h", |
| 108 "lib/union_accessor.h", | |
| 109 "lib/validate_params.h", | 108 "lib/validate_params.h", |
| 110 "lib/validation_context.cc", | 109 "lib/validation_context.cc", |
| 111 "lib/validation_context.h", | 110 "lib/validation_context.h", |
| 112 "lib/validation_errors.cc", | 111 "lib/validation_errors.cc", |
| 113 "lib/validation_errors.h", | 112 "lib/validation_errors.h", |
| 114 "lib/validation_util.cc", | 113 "lib/validation_util.cc", |
| 115 "lib/validation_util.h", | 114 "lib/validation_util.h", |
| 116 "map.h", | 115 "map.h", |
| 117 "map_data_view.h", | 116 "map_data_view.h", |
| 118 "map_traits.h", | 117 "map_traits.h", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 ] | 181 ] |
| 183 | 182 |
| 184 public_deps = [ | 183 public_deps = [ |
| 185 ":bindings", | 184 ":bindings", |
| 186 "//third_party/WebKit/Source/wtf", | 185 "//third_party/WebKit/Source/wtf", |
| 187 ] | 186 ] |
| 188 | 187 |
| 189 public_configs = [ "//third_party/WebKit/Source:config" ] | 188 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 190 } | 189 } |
| 191 } | 190 } |
| OLD | NEW |