| 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 26 matching lines...) Expand all Loading... |
| 37 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', | 37 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 38 '../../url/url.gyp:url_lib', | 38 '../../url/url.gyp:url_lib', |
| 39 ], | 39 ], |
| 40 'sources': [ | 40 'sources': [ |
| 41 'base/mcs_message.cc', | 41 'base/mcs_message.cc', |
| 42 'base/mcs_message.h', | 42 'base/mcs_message.h', |
| 43 'base/mcs_util.cc', | 43 'base/mcs_util.cc', |
| 44 'base/mcs_util.h', | 44 'base/mcs_util.h', |
| 45 'base/socket_stream.cc', | 45 'base/socket_stream.cc', |
| 46 'base/socket_stream.h', | 46 'base/socket_stream.h', |
| 47 'engine/checkin_request.cc', |
| 48 'engine/checkin_request.h', |
| 47 'engine/connection_factory.cc', | 49 'engine/connection_factory.cc', |
| 48 'engine/connection_factory.h', | 50 'engine/connection_factory.h', |
| 49 'engine/connection_factory_impl.cc', | 51 'engine/connection_factory_impl.cc', |
| 50 'engine/connection_factory_impl.h', | 52 'engine/connection_factory_impl.h', |
| 51 'engine/connection_handler.cc', | 53 'engine/connection_handler.cc', |
| 52 'engine/connection_handler.h', | 54 'engine/connection_handler.h', |
| 53 'engine/connection_handler_impl.cc', | 55 'engine/connection_handler_impl.cc', |
| 54 'engine/connection_handler_impl.h', | 56 'engine/connection_handler_impl.h', |
| 55 'engine/gcm_store.cc', | 57 'engine/gcm_store.cc', |
| 56 'engine/gcm_store.h', | 58 'engine/gcm_store.h', |
| 57 'engine/gcm_store_impl.cc', | 59 'engine/gcm_store_impl.cc', |
| 58 'engine/gcm_store_impl.h', | 60 'engine/gcm_store_impl.h', |
| 59 'engine/heartbeat_manager.cc', | 61 'engine/heartbeat_manager.cc', |
| 60 'engine/heartbeat_manager.h', | 62 'engine/heartbeat_manager.h', |
| 61 'engine/mcs_client.cc', | 63 'engine/mcs_client.cc', |
| 62 'engine/mcs_client.h', | 64 'engine/mcs_client.h', |
| 63 'gcm_client.cc', | 65 'gcm_client.cc', |
| 64 'gcm_client.h', | 66 'gcm_client.h', |
| 65 'gcm_client_impl.cc', | 67 'gcm_client_impl.cc', |
| 66 'gcm_client_impl.h', | 68 'gcm_client_impl.h', |
| 69 'protocol/android_checkin.proto', |
| 70 'protocol/checkin.proto', |
| 67 'protocol/mcs.proto', | 71 'protocol/mcs.proto', |
| 68 ], | 72 ], |
| 69 'includes': [ | 73 'includes': [ |
| 70 '../../build/protoc.gypi' | 74 '../../build/protoc.gypi' |
| 71 ], | 75 ], |
| 72 }, | 76 }, |
| 73 | 77 |
| 74 # A standalone MCS (mobile connection server) client. | 78 # A standalone MCS (mobile connection server) client. |
| 75 { | 79 { |
| 76 'target_name': 'mcs_probe', | 80 'target_name': 'mcs_probe', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 '../../net/net.gyp:net', | 113 '../../net/net.gyp:net', |
| 110 '../../net/net.gyp:net_test_support', | 114 '../../net/net.gyp:net_test_support', |
| 111 '../../testing/gtest.gyp:gtest', | 115 '../../testing/gtest.gyp:gtest', |
| 112 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', | 116 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 113 'gcm' | 117 'gcm' |
| 114 ], | 118 ], |
| 115 'sources': [ | 119 'sources': [ |
| 116 'base/mcs_message_unittest.cc', | 120 'base/mcs_message_unittest.cc', |
| 117 'base/mcs_util_unittest.cc', | 121 'base/mcs_util_unittest.cc', |
| 118 'base/socket_stream_unittest.cc', | 122 'base/socket_stream_unittest.cc', |
| 123 'engine/checkin_request_unittest.cc', |
| 119 'engine/connection_factory_impl_unittest.cc', | 124 'engine/connection_factory_impl_unittest.cc', |
| 120 'engine/connection_handler_impl_unittest.cc', | 125 'engine/connection_handler_impl_unittest.cc', |
| 121 'engine/fake_connection_factory.cc', | 126 'engine/fake_connection_factory.cc', |
| 122 'engine/fake_connection_factory.h', | 127 'engine/fake_connection_factory.h', |
| 123 'engine/fake_connection_handler.cc', | 128 'engine/fake_connection_handler.cc', |
| 124 'engine/fake_connection_handler.h', | 129 'engine/fake_connection_handler.h', |
| 125 'engine/gcm_store_impl_unittest.cc', | 130 'engine/gcm_store_impl_unittest.cc', |
| 126 'engine/heartbeat_manager_unittest.cc', | 131 'engine/heartbeat_manager_unittest.cc', |
| 127 'engine/mcs_client_unittest.cc', | 132 'engine/mcs_client_unittest.cc', |
| 128 ] | 133 ] |
| 129 }, | 134 }, |
| 130 ], | 135 ], |
| 131 } | 136 } |
| OLD | NEW |