| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 'engine/unregistration_request.cc', | 74 'engine/unregistration_request.cc', |
| 75 'engine/unregistration_request.h', | 75 'engine/unregistration_request.h', |
| 76 'monitoring/gcm_stats_recorder.h', | 76 'monitoring/gcm_stats_recorder.h', |
| 77 'protocol/android_checkin.proto', | 77 'protocol/android_checkin.proto', |
| 78 'protocol/checkin.proto', | 78 'protocol/checkin.proto', |
| 79 'protocol/mcs.proto', | 79 'protocol/mcs.proto', |
| 80 ], | 80 ], |
| 81 'includes': [ | 81 'includes': [ |
| 82 '../../build/protoc.gypi' | 82 '../../build/protoc.gypi' |
| 83 ], | 83 ], |
| 84 'conditions': [ |
| 85 ['chromeos == 1', { |
| 86 'dependencies': [ |
| 87 '../../components/components.gyp:timer', |
| 88 ], |
| 89 }], |
| 90 ], |
| 84 }, | 91 }, |
| 85 | 92 |
| 86 # The test support library that is needed to test gcm. | 93 # The test support library that is needed to test gcm. |
| 87 { | 94 { |
| 88 # GN version: //google_apis/gcm:test_support | 95 # GN version: //google_apis/gcm:test_support |
| 89 'target_name': 'gcm_test_support', | 96 'target_name': 'gcm_test_support', |
| 90 'type': 'static_library', | 97 'type': 'static_library', |
| 91 'include_dirs': [ | 98 'include_dirs': [ |
| 92 '..', | 99 '..', |
| 93 ], | 100 ], |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 'engine/gcm_store_impl_unittest.cc', | 175 'engine/gcm_store_impl_unittest.cc', |
| 169 'engine/gservices_settings_unittest.cc', | 176 'engine/gservices_settings_unittest.cc', |
| 170 'engine/heartbeat_manager_unittest.cc', | 177 'engine/heartbeat_manager_unittest.cc', |
| 171 'engine/mcs_client_unittest.cc', | 178 'engine/mcs_client_unittest.cc', |
| 172 'engine/registration_request_unittest.cc', | 179 'engine/registration_request_unittest.cc', |
| 173 'engine/unregistration_request_unittest.cc', | 180 'engine/unregistration_request_unittest.cc', |
| 174 ] | 181 ] |
| 175 }, | 182 }, |
| 176 ], | 183 ], |
| 177 } | 184 } |
| OLD | NEW |