Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: mojo/public/cpp/bindings/BUILD.gn

Issue 2506383002: Mojo: adding a thread safe associated interface ptr. (Closed)
Patch Set: Fixed BUILD.gn Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "lib/serialization_context.cc", 100 "lib/serialization_context.cc",
101 "lib/serialization_context.h", 101 "lib/serialization_context.h",
102 "lib/serialization_forward.h", 102 "lib/serialization_forward.h",
103 "lib/serialization_util.h", 103 "lib/serialization_util.h",
104 "lib/string_serialization.h", 104 "lib/string_serialization.h",
105 "lib/string_traits_string16.cc", 105 "lib/string_traits_string16.cc",
106 "lib/sync_call_restrictions.cc", 106 "lib/sync_call_restrictions.cc",
107 "lib/sync_handle_registry.cc", 107 "lib/sync_handle_registry.cc",
108 "lib/sync_handle_watcher.cc", 108 "lib/sync_handle_watcher.cc",
109 "lib/template_util.h", 109 "lib/template_util.h",
110 "lib/thread_safe_interface_ptr_base.h",
110 "lib/union_accessor.h", 111 "lib/union_accessor.h",
111 "lib/validate_params.h", 112 "lib/validate_params.h",
112 "lib/validation_context.cc", 113 "lib/validation_context.cc",
113 "lib/validation_context.h", 114 "lib/validation_context.h",
114 "lib/validation_errors.cc", 115 "lib/validation_errors.cc",
115 "lib/validation_errors.h", 116 "lib/validation_errors.h",
116 "lib/validation_util.cc", 117 "lib/validation_util.cc",
117 "lib/validation_util.h", 118 "lib/validation_util.h",
118 "map.h", 119 "map.h",
119 "map_data_view.h", 120 "map_data_view.h",
(...skipping 17 matching lines...) Expand all
137 "string_traits_standard.h", 138 "string_traits_standard.h",
138 "string_traits_stl.h", 139 "string_traits_stl.h",
139 "string_traits_string16.h", 140 "string_traits_string16.h",
140 "string_traits_string_piece.h", 141 "string_traits_string_piece.h",
141 "strong_associated_binding.h", 142 "strong_associated_binding.h",
142 "strong_binding.h", 143 "strong_binding.h",
143 "struct_ptr.h", 144 "struct_ptr.h",
144 "sync_call_restrictions.h", 145 "sync_call_restrictions.h",
145 "sync_handle_registry.h", 146 "sync_handle_registry.h",
146 "sync_handle_watcher.h", 147 "sync_handle_watcher.h",
148 "thread_safe_associated_interface_ptr.h",
149 "thread_safe_interface_ptr.h",
147 "type_converter.h", 150 "type_converter.h",
148 "union_traits.h", 151 "union_traits.h",
149 ] 152 ]
150 153
151 public_deps = [ 154 public_deps = [
152 ":struct_traits", 155 ":struct_traits",
153 "//base", 156 "//base",
154 "//ipc:param_traits", 157 "//ipc:param_traits",
155 "//mojo/public/cpp/system", 158 "//mojo/public/cpp/system",
156 ] 159 ]
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 ] 192 ]
190 193
191 public_deps = [ 194 public_deps = [
192 ":bindings", 195 ":bindings",
193 "//third_party/WebKit/Source/wtf", 196 "//third_party/WebKit/Source/wtf",
194 ] 197 ]
195 198
196 public_configs = [ "//third_party/WebKit/Source:config" ] 199 public_configs = [ "//third_party/WebKit/Source:config" ]
197 } 200 }
198 } 201 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698