OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 | 9 |
10 'targets': [ | 10 'targets': [ |
(...skipping 16 matching lines...) Expand all Loading... |
27 ], | 27 ], |
28 'export_dependent_settings': [ | 28 'export_dependent_settings': [ |
29 '../../third_party/protobuf/protobuf.gyp:protobuf_lite' | 29 '../../third_party/protobuf/protobuf.gyp:protobuf_lite' |
30 ], | 30 ], |
31 'dependencies': [ | 31 'dependencies': [ |
32 '../../base/base.gyp:base', | 32 '../../base/base.gyp:base', |
33 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 33 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
34 '../../components/components.gyp:encryptor', | 34 '../../components/components.gyp:encryptor', |
35 '../../net/net.gyp:net', | 35 '../../net/net.gyp:net', |
36 '../../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 36 '../../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
37 '../../third_party/protobuf/protobuf.gyp:protobuf_lite' | 37 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 38 '../../url/url.gyp:url_lib', |
38 ], | 39 ], |
39 'sources': [ | 40 'sources': [ |
40 'base/mcs_message.h', | 41 'base/mcs_message.h', |
41 'base/mcs_message.cc', | 42 'base/mcs_message.cc', |
42 'base/mcs_util.h', | 43 'base/mcs_util.h', |
43 'base/mcs_util.cc', | 44 'base/mcs_util.cc', |
44 'base/socket_stream.h', | 45 'base/socket_stream.h', |
45 'base/socket_stream.cc', | 46 'base/socket_stream.cc', |
| 47 'engine/connection_factory.h', |
| 48 'engine/connection_factory.cc', |
| 49 'engine/connection_factory_impl.h', |
| 50 'engine/connection_factory_impl.cc', |
46 'engine/connection_handler.h', | 51 'engine/connection_handler.h', |
47 'engine/connection_handler.cc', | 52 'engine/connection_handler.cc', |
| 53 'engine/connection_handler_impl.h', |
| 54 'engine/connection_handler_impl.cc', |
48 'engine/rmq_store.h', | 55 'engine/rmq_store.h', |
49 'engine/rmq_store.cc', | 56 'engine/rmq_store.cc', |
50 'gcm_client.cc', | 57 'gcm_client.cc', |
51 'gcm_client.h', | 58 'gcm_client.h', |
52 'gcm_client_impl.cc', | 59 'gcm_client_impl.cc', |
53 'gcm_client_impl.h', | 60 'gcm_client_impl.h', |
54 'protocol/mcs.proto', | 61 'protocol/mcs.proto', |
55 ], | 62 ], |
56 'includes': [ | 63 'includes': [ |
57 '../../build/protoc.gypi' | 64 '../../build/protoc.gypi' |
(...skipping 13 matching lines...) Expand all Loading... |
71 '../../base/base.gyp:base', | 78 '../../base/base.gyp:base', |
72 '../../components/components.gyp:encryptor', | 79 '../../components/components.gyp:encryptor', |
73 '../../net/net.gyp:net_test_support', | 80 '../../net/net.gyp:net_test_support', |
74 '../../testing/gtest.gyp:gtest', | 81 '../../testing/gtest.gyp:gtest', |
75 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', | 82 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', |
76 'gcm' | 83 'gcm' |
77 ], | 84 ], |
78 'sources': [ | 85 'sources': [ |
79 'base/mcs_util_unittest.cc', | 86 'base/mcs_util_unittest.cc', |
80 'base/socket_stream_unittest.cc', | 87 'base/socket_stream_unittest.cc', |
81 'engine/connection_handler_unittest.cc', | 88 'engine/connection_factory_impl_unittest.cc', |
| 89 'engine/connection_handler_impl_unittest.cc', |
82 'engine/rmq_store_unittest.cc', | 90 'engine/rmq_store_unittest.cc', |
83 ] | 91 ] |
84 }, | 92 }, |
85 ], | 93 ], |
86 } | 94 } |
OLD | NEW |