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

Side by Side Diff: third_party/cacheinvalidation/cacheinvalidation.gyp

Issue 9190029: use push messaging in cache invalidation xmpp channel (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 11 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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'variables': { 6 'variables': {
7 # This library should build cleanly with the extra warnings turned on 7 # This library should build cleanly with the extra warnings turned on
8 # for Chromium. 8 # for Chromium.
9 'chromium_code': 1, 9 'chromium_code': 1,
10 # The root directory for the proto files. 10 # The root directory for the proto files.
(...skipping 10 matching lines...) Expand all
21 'protoc': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)', 21 'protoc': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)',
22 }, 22 },
23 'targets': [ 23 'targets': [
24 # The rule/action to generate files from the cacheinvalidation proto 24 # The rule/action to generate files from the cacheinvalidation proto
25 # files. 25 # files.
26 { 26 {
27 'target_name': 'cacheinvalidation_proto', 27 'target_name': 'cacheinvalidation_proto',
28 'type': 'none', 28 'type': 'none',
29 'sources': [ 29 'sources': [
30 '<(proto_dir_root)/<(proto_dir_relpath)/client.proto', 30 '<(proto_dir_root)/<(proto_dir_relpath)/client.proto',
31 '<(proto_dir_root)/<(proto_dir_relpath)/client_gateway.proto',
31 '<(proto_dir_root)/<(proto_dir_relpath)/client_protocol.proto', 32 '<(proto_dir_root)/<(proto_dir_relpath)/client_protocol.proto',
32 '<(proto_dir_root)/<(proto_dir_relpath)/client_test_internal.proto', 33 '<(proto_dir_root)/<(proto_dir_relpath)/client_test_internal.proto',
33 '<(proto_dir_root)/<(proto_dir_relpath)/types.proto', 34 '<(proto_dir_root)/<(proto_dir_relpath)/types.proto',
34 ], 35 ],
35 # TODO(akalin): This block was copied from the sync_proto target 36 # TODO(akalin): This block was copied from the sync_proto target
36 # from chrome.gyp. Decomp the shared blocks out somehow. 37 # from chrome.gyp. Decomp the shared blocks out somehow.
37 'rules': [ 38 'rules': [
38 { 39 {
39 'rule_name': 'genproto', 40 'rule_name': 'genproto',
40 'extension': 'proto', 41 'extension': 'proto',
(...skipping 19 matching lines...) Expand all
60 '../../third_party/protobuf/protobuf.gyp:protoc#host', 61 '../../third_party/protobuf/protobuf.gyp:protoc#host',
61 ], 62 ],
62 }, 63 },
63 # The C++ files generated from the cache invalidation protocol buffers. 64 # The C++ files generated from the cache invalidation protocol buffers.
64 { 65 {
65 'target_name': 'cacheinvalidation_proto_cpp', 66 'target_name': 'cacheinvalidation_proto_cpp',
66 'type': 'static_library', 67 'type': 'static_library',
67 'sources': [ 68 'sources': [
68 '<(protoc_out_dir)/<(proto_dir_relpath)/client.pb.h', 69 '<(protoc_out_dir)/<(proto_dir_relpath)/client.pb.h',
69 '<(protoc_out_dir)/<(proto_dir_relpath)/client.pb.cc', 70 '<(protoc_out_dir)/<(proto_dir_relpath)/client.pb.cc',
71 '<(protoc_out_dir)/<(proto_dir_relpath)/client_gateway.pb.h',
72 '<(protoc_out_dir)/<(proto_dir_relpath)/client_gateway.pb.cc',
70 '<(protoc_out_dir)/<(proto_dir_relpath)/client_protocol.pb.h', 73 '<(protoc_out_dir)/<(proto_dir_relpath)/client_protocol.pb.h',
71 '<(protoc_out_dir)/<(proto_dir_relpath)/client_protocol.pb.cc', 74 '<(protoc_out_dir)/<(proto_dir_relpath)/client_protocol.pb.cc',
72 '<(protoc_out_dir)/<(proto_dir_relpath)/client_test_internal.pb.h', 75 '<(protoc_out_dir)/<(proto_dir_relpath)/client_test_internal.pb.h',
73 '<(protoc_out_dir)/<(proto_dir_relpath)/client_test_internal.pb.cc', 76 '<(protoc_out_dir)/<(proto_dir_relpath)/client_test_internal.pb.cc',
74 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.h', 77 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.h',
75 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.cc', 78 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.cc',
76 ], 79 ],
77 'dependencies': [ 80 'dependencies': [
78 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', 81 '../../third_party/protobuf/protobuf.gyp:protobuf_lite',
79 'cacheinvalidation_proto', 82 'cacheinvalidation_proto',
(...skipping 27 matching lines...) Expand all
107 'overrides/google/cacheinvalidation/md5.h', 110 'overrides/google/cacheinvalidation/md5.h',
108 'overrides/google/cacheinvalidation/v2/mutex.h', 111 'overrides/google/cacheinvalidation/v2/mutex.h',
109 'overrides/google/cacheinvalidation/random.h', 112 'overrides/google/cacheinvalidation/random.h',
110 'overrides/google/cacheinvalidation/v2/scoped_ptr.h', 113 'overrides/google/cacheinvalidation/v2/scoped_ptr.h',
111 'overrides/google/cacheinvalidation/stl-namespace.h', 114 'overrides/google/cacheinvalidation/stl-namespace.h',
112 'overrides/google/cacheinvalidation/v2/string_util.h', 115 'overrides/google/cacheinvalidation/v2/string_util.h',
113 'overrides/google/cacheinvalidation/v2/time.h', 116 'overrides/google/cacheinvalidation/v2/time.h',
114 'files/src/google/cacheinvalidation/v2/checking-invalidation-listener.cc ', 117 'files/src/google/cacheinvalidation/v2/checking-invalidation-listener.cc ',
115 'files/src/google/cacheinvalidation/v2/checking-invalidation-listener.h' , 118 'files/src/google/cacheinvalidation/v2/checking-invalidation-listener.h' ,
116 'files/src/google/cacheinvalidation/v2/client-protocol-namespace-fix.h', 119 'files/src/google/cacheinvalidation/v2/client-protocol-namespace-fix.h',
120 'files/src/google/cacheinvalidation/v2/constants.cc',
117 'files/src/google/cacheinvalidation/v2/constants.h', 121 'files/src/google/cacheinvalidation/v2/constants.h',
118 'files/src/google/cacheinvalidation/v2/constants.cc',
119 'files/src/google/cacheinvalidation/v2/digest-function.h', 122 'files/src/google/cacheinvalidation/v2/digest-function.h',
120 'files/src/google/cacheinvalidation/v2/digest-store.h', 123 'files/src/google/cacheinvalidation/v2/digest-store.h',
124 'files/src/google/cacheinvalidation/v2/exponential-backoff-delay-generat or.cc',
121 'files/src/google/cacheinvalidation/v2/exponential-backoff-delay-generat or.h', 125 'files/src/google/cacheinvalidation/v2/exponential-backoff-delay-generat or.h',
122 'files/src/google/cacheinvalidation/v2/exponential-backoff-delay-generat or.cc',
123 'files/src/google/cacheinvalidation/v2/invalidation-client-impl.cc', 126 'files/src/google/cacheinvalidation/v2/invalidation-client-impl.cc',
124 'files/src/google/cacheinvalidation/v2/invalidation-client-impl.h', 127 'files/src/google/cacheinvalidation/v2/invalidation-client-impl.h',
125 'files/src/google/cacheinvalidation/v2/invalidation-client.h', 128 'files/src/google/cacheinvalidation/v2/invalidation-client.h',
126 'files/src/google/cacheinvalidation/v2/invalidation-client-util.h', 129 'files/src/google/cacheinvalidation/v2/invalidation-client-util.h',
127 'files/src/google/cacheinvalidation/v2/invalidation-listener.h', 130 'files/src/google/cacheinvalidation/v2/invalidation-listener.h',
128 'files/src/google/cacheinvalidation/v2/log-macro.h', 131 'files/src/google/cacheinvalidation/v2/log-macro.h',
129 'files/src/google/cacheinvalidation/v2/logging.h', 132 'files/src/google/cacheinvalidation/v2/logging.h',
130 'files/src/google/cacheinvalidation/v2/mutex.h', 133 'files/src/google/cacheinvalidation/v2/mutex.h',
131 'files/src/google/cacheinvalidation/v2/object-id-digest-utils.cc', 134 'files/src/google/cacheinvalidation/v2/object-id-digest-utils.cc',
132 'files/src/google/cacheinvalidation/v2/object-id-digest-utils.h', 135 'files/src/google/cacheinvalidation/v2/object-id-digest-utils.h',
(...skipping 13 matching lines...) Expand all
146 'files/src/google/cacheinvalidation/v2/sha1-digest-function.h', 149 'files/src/google/cacheinvalidation/v2/sha1-digest-function.h',
147 'files/src/google/cacheinvalidation/v2/simple-registration-store.cc', 150 'files/src/google/cacheinvalidation/v2/simple-registration-store.cc',
148 'files/src/google/cacheinvalidation/v2/simple-registration-store.h', 151 'files/src/google/cacheinvalidation/v2/simple-registration-store.h',
149 'files/src/google/cacheinvalidation/v2/smearer.h', 152 'files/src/google/cacheinvalidation/v2/smearer.h',
150 'files/src/google/cacheinvalidation/v2/statistics.cc', 153 'files/src/google/cacheinvalidation/v2/statistics.cc',
151 'files/src/google/cacheinvalidation/v2/statistics.h', 154 'files/src/google/cacheinvalidation/v2/statistics.h',
152 'files/src/google/cacheinvalidation/v2/string_util.h', 155 'files/src/google/cacheinvalidation/v2/string_util.h',
153 'files/src/google/cacheinvalidation/v2/system-resources.h', 156 'files/src/google/cacheinvalidation/v2/system-resources.h',
154 'files/src/google/cacheinvalidation/v2/throttle.cc', 157 'files/src/google/cacheinvalidation/v2/throttle.cc',
155 'files/src/google/cacheinvalidation/v2/throttle.h', 158 'files/src/google/cacheinvalidation/v2/throttle.h',
159 'files/src/google/cacheinvalidation/v2/ticl-message-validator.cc',
156 'files/src/google/cacheinvalidation/v2/ticl-message-validator.h', 160 'files/src/google/cacheinvalidation/v2/ticl-message-validator.h',
157 'files/src/google/cacheinvalidation/v2/ticl-message-validator.cc',
158 'files/src/google/cacheinvalidation/v2/time.h', 161 'files/src/google/cacheinvalidation/v2/time.h',
159 'files/src/google/cacheinvalidation/v2/types.h', 162 'files/src/google/cacheinvalidation/v2/types.h',
160 ], 163 ],
161 'include_dirs': [ 164 'include_dirs': [
162 './overrides', 165 './overrides',
163 './files/src', 166 './files/src',
164 ], 167 ],
165 'dependencies': [ 168 'dependencies': [
166 '../../base/base.gyp:base', 169 '../../base/base.gyp:base',
167 'cacheinvalidation_proto', 170 'cacheinvalidation_proto',
(...skipping 27 matching lines...) Expand all
195 '../../base/base.gyp:base', 198 '../../base/base.gyp:base',
196 # Needed by run_all_unittests.cc. 199 # Needed by run_all_unittests.cc.
197 '../../base/base.gyp:test_support_base', 200 '../../base/base.gyp:test_support_base',
198 '../../testing/gmock.gyp:gmock', 201 '../../testing/gmock.gyp:gmock',
199 '../../testing/gtest.gyp:gtest', 202 '../../testing/gtest.gyp:gtest',
200 'cacheinvalidation', 203 'cacheinvalidation',
201 ], 204 ],
202 }, 205 },
203 ], 206 ],
204 } 207 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698