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

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

Issue 1524613002: [mojo] Use base::Pickle for Message storage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: happy compiler happy robots Created 5 years 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
« no previous file with comments | « base/pickle_unittest.cc ('k') | mojo/public/cpp/bindings/lib/buffer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "lib/message.cc", 46 "lib/message.cc",
47 "lib/message_builder.cc", 47 "lib/message_builder.cc",
48 "lib/message_builder.h", 48 "lib/message_builder.h",
49 "lib/message_filter.cc", 49 "lib/message_filter.cc",
50 "lib/message_header_validator.cc", 50 "lib/message_header_validator.cc",
51 "lib/message_header_validator.h", 51 "lib/message_header_validator.h",
52 "lib/message_internal.h", 52 "lib/message_internal.h",
53 "lib/multiplex_router.cc", 53 "lib/multiplex_router.cc",
54 "lib/multiplex_router.h", 54 "lib/multiplex_router.h",
55 "lib/no_interface.cc", 55 "lib/no_interface.cc",
56 "lib/pickle_buffer.cc",
57 "lib/pickle_buffer.h",
56 "lib/pipe_control_message_handler.cc", 58 "lib/pipe_control_message_handler.cc",
57 "lib/pipe_control_message_handler.h", 59 "lib/pipe_control_message_handler.h",
58 "lib/pipe_control_message_handler_delegate.h", 60 "lib/pipe_control_message_handler_delegate.h",
59 "lib/pipe_control_message_proxy.cc", 61 "lib/pipe_control_message_proxy.cc",
60 "lib/pipe_control_message_proxy.h", 62 "lib/pipe_control_message_proxy.h",
61 "lib/router.cc", 63 "lib/router.cc",
62 "lib/router.h", 64 "lib/router.h",
63 "lib/scoped_interface_endpoint_handle.cc", 65 "lib/scoped_interface_endpoint_handle.cc",
64 "lib/scoped_interface_endpoint_handle.h", 66 "lib/scoped_interface_endpoint_handle.h",
65 "lib/string_serialization.cc", 67 "lib/string_serialization.cc",
(...skipping 10 matching lines...) Expand all
76 "message_filter.h", 78 "message_filter.h",
77 "no_interface.h", 79 "no_interface.h",
78 "string.h", 80 "string.h",
79 "strong_binding.h", 81 "strong_binding.h",
80 "struct_ptr.h", 82 "struct_ptr.h",
81 "type_converter.h", 83 "type_converter.h",
82 ] 84 ]
83 85
84 public_deps = [ 86 public_deps = [
85 ":callback", 87 ":callback",
88 "//base",
86 "//mojo/public/cpp/system", 89 "//mojo/public/cpp/system",
87 ] 90 ]
88 91
89 deps = [ 92 deps = [
90 "//base", 93 "//base",
91 "//mojo/public/cpp/environment", 94 "//mojo/public/cpp/environment",
92 "//mojo/public/interfaces/bindings:bindings_cpp_sources", 95 "//mojo/public/interfaces/bindings:bindings_cpp_sources",
93 ] 96 ]
94 } 97 }
95 98
96 source_set("callback") { 99 source_set("callback") {
97 sources = [ 100 sources = [
98 "callback.h", 101 "callback.h",
99 "lib/callback_internal.h", 102 "lib/callback_internal.h",
100 "lib/shared_data.h", 103 "lib/shared_data.h",
101 "lib/shared_ptr.h", 104 "lib/shared_ptr.h",
102 "lib/template_util.h", 105 "lib/template_util.h",
103 ] 106 ]
104 107
105 deps = [ 108 deps = [
106 "//base", 109 "//base",
107 "//mojo/public/cpp/system", 110 "//mojo/public/cpp/system",
108 ] 111 ]
109 } 112 }
OLDNEW
« no previous file with comments | « base/pickle_unittest.cc ('k') | mojo/public/cpp/bindings/lib/buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698