| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'base/socket_stream.cc', | 45 'base/socket_stream.cc', |
| 46 'base/socket_stream.h', | 46 'base/socket_stream.h', |
| 47 'engine/connection_factory.cc', | 47 'engine/connection_factory.cc', |
| 48 'engine/connection_factory.h', | 48 'engine/connection_factory.h', |
| 49 'engine/connection_factory_impl.cc', | 49 'engine/connection_factory_impl.cc', |
| 50 'engine/connection_factory_impl.h', | 50 'engine/connection_factory_impl.h', |
| 51 'engine/connection_handler.cc', | 51 'engine/connection_handler.cc', |
| 52 'engine/connection_handler.h', | 52 'engine/connection_handler.h', |
| 53 'engine/connection_handler_impl.cc', | 53 'engine/connection_handler_impl.cc', |
| 54 'engine/connection_handler_impl.h', | 54 'engine/connection_handler_impl.h', |
| 55 'engine/gcm_checkin_request.cc', |
| 56 'engine/gcm_checkin_request.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/mcs_client.cc', | 61 'engine/mcs_client.cc', |
| 60 'engine/mcs_client.h', | 62 'engine/mcs_client.h', |
| 61 'gcm_client.cc', | 63 'gcm_client.cc', |
| 62 'gcm_client.h', | 64 'gcm_client.h', |
| 63 'gcm_client_impl.cc', | 65 'gcm_client_impl.cc', |
| 64 'gcm_client_impl.h', | 66 'gcm_client_impl.h', |
| 67 'protocol/android_checkin.proto', |
| 68 'protocol/checkin.proto', |
| 65 'protocol/mcs.proto', | 69 'protocol/mcs.proto', |
| 66 ], | 70 ], |
| 67 'includes': [ | 71 'includes': [ |
| 68 '../../build/protoc.gypi' | 72 '../../build/protoc.gypi' |
| 69 ], | 73 ], |
| 70 }, | 74 }, |
| 71 | 75 |
| 72 # A standalone MCS (mobile connection server) client. | 76 # A standalone MCS (mobile connection server) client. |
| 73 { | 77 { |
| 74 'target_name': 'mcs_probe', | 78 'target_name': 'mcs_probe', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 'base/mcs_message_unittest.cc', | 118 'base/mcs_message_unittest.cc', |
| 115 'base/mcs_util_unittest.cc', | 119 'base/mcs_util_unittest.cc', |
| 116 'base/socket_stream_unittest.cc', | 120 'base/socket_stream_unittest.cc', |
| 117 'engine/connection_factory_impl_unittest.cc', | 121 'engine/connection_factory_impl_unittest.cc', |
| 118 'engine/connection_handler_impl_unittest.cc', | 122 'engine/connection_handler_impl_unittest.cc', |
| 119 'engine/fake_connection_factory.cc', | 123 'engine/fake_connection_factory.cc', |
| 120 'engine/fake_connection_factory.h', | 124 'engine/fake_connection_factory.h', |
| 121 'engine/fake_connection_handler.cc', | 125 'engine/fake_connection_handler.cc', |
| 122 'engine/fake_connection_handler.h', | 126 'engine/fake_connection_handler.h', |
| 123 'engine/mcs_client_unittest.cc', | 127 'engine/mcs_client_unittest.cc', |
| 128 'engine/gcm_checkin_request_unittest.cc', |
| 124 'engine/gcm_store_impl_unittest.cc', | 129 'engine/gcm_store_impl_unittest.cc', |
| 125 ] | 130 ] |
| 126 }, | 131 }, |
| 127 ], | 132 ], |
| 128 } | 133 } |
| OLD | NEW |