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

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

Issue 265793015: Mojo: Replace RemotePtr with InterfacePtr and InterfaceImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 months 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 | Annotate | Revision Log
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 source_set("bindings") { 5 source_set("bindings") {
6 sources = [ 6 sources = [
7 "allocation_scope.h", 7 "allocation_scope.h",
8 "array.h", 8 "array.h",
9 "buffer.h", 9 "buffer.h",
10 "callback.h", 10 "callback.h",
11 "error_handler.h", 11 "error_handler.h",
12 "interface.h", 12 "interface_ptr.h",
13 "message.h", 13 "message.h",
14 "no_interface.h",
14 "passable.h", 15 "passable.h",
15 "remote_ptr.h",
16 "sync_dispatcher.h", 16 "sync_dispatcher.h",
17 "type_converter.h", 17 "type_converter.h",
18 "lib/array.cc", 18 "lib/array.cc",
19 "lib/array_internal.h", 19 "lib/array_internal.h",
20 "lib/array_internal.cc", 20 "lib/array_internal.cc",
21 "lib/bindings_internal.h", 21 "lib/bindings_internal.h",
22 "lib/bindings_serialization.cc", 22 "lib/bindings_serialization.cc",
23 "lib/bindings_serialization.h", 23 "lib/bindings_serialization.h",
24 "lib/buffer.cc", 24 "lib/buffer.cc",
25 "lib/callback_internal.h", 25 "lib/callback_internal.h",
26 "lib/connector.cc", 26 "lib/connector.cc",
27 "lib/connector.h", 27 "lib/connector.h",
28 "lib/fixed_buffer.cc", 28 "lib/fixed_buffer.cc",
29 "lib/fixed_buffer.h", 29 "lib/fixed_buffer.h",
30 "lib/interface.cc",
31 "lib/message.cc", 30 "lib/message.cc",
32 "lib/message_builder.cc", 31 "lib/message_builder.cc",
33 "lib/message_builder.h", 32 "lib/message_builder.h",
34 "lib/message_internal.h", 33 "lib/message_internal.h",
35 "lib/message_queue.cc", 34 "lib/message_queue.cc",
36 "lib/message_queue.h", 35 "lib/message_queue.h",
36 "lib/no_interface.cc",
37 "lib/router.cc", 37 "lib/router.cc",
38 "lib/router.h", 38 "lib/router.h",
39 "lib/scratch_buffer.cc", 39 "lib/scratch_buffer.cc",
40 "lib/scratch_buffer.h", 40 "lib/scratch_buffer.h",
41 "lib/shared_data.h", 41 "lib/shared_data.h",
42 "lib/shared_ptr.h", 42 "lib/shared_ptr.h",
43 "lib/sync_dispatcher.cc", 43 "lib/sync_dispatcher.cc",
44 ] 44 ]
45 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698