| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # GYP version: components/gcm_driver.gypi:gcm_driver | 5 # GYP version: components/gcm_driver.gypi:gcm_driver |
| 6 static_library("gcm_driver") { | 6 static_library("gcm_driver") { |
| 7 sources = [ | 7 sources = [ |
| 8 "android/component_jni_registrar.cc", | 8 "android/component_jni_registrar.cc", |
| 9 "android/component_jni_registrar.h", | 9 "android/component_jni_registrar.h", |
| 10 "default_gcm_app_handler.cc", | 10 "default_gcm_app_handler.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "gcm_driver.cc", | 38 "gcm_driver.cc", |
| 39 "gcm_driver.h", | 39 "gcm_driver.h", |
| 40 "gcm_driver_android.cc", | 40 "gcm_driver_android.cc", |
| 41 "gcm_driver_android.h", | 41 "gcm_driver_android.h", |
| 42 "gcm_driver_constants.cc", | 42 "gcm_driver_constants.cc", |
| 43 "gcm_driver_constants.h", | 43 "gcm_driver_constants.h", |
| 44 "gcm_driver_desktop.cc", | 44 "gcm_driver_desktop.cc", |
| 45 "gcm_driver_desktop.h", | 45 "gcm_driver_desktop.h", |
| 46 "gcm_internals_constants.cc", | 46 "gcm_internals_constants.cc", |
| 47 "gcm_internals_constants.h", | 47 "gcm_internals_constants.h", |
| 48 "gcm_internals_helper.cc", |
| 49 "gcm_internals_helper.h", |
| 48 "gcm_profile_service.cc", | 50 "gcm_profile_service.cc", |
| 49 "gcm_profile_service.h", | 51 "gcm_profile_service.h", |
| 50 "gcm_stats_recorder_impl.cc", | 52 "gcm_stats_recorder_impl.cc", |
| 51 "gcm_stats_recorder_impl.h", | 53 "gcm_stats_recorder_impl.h", |
| 52 "registration_info.cc", | 54 "registration_info.cc", |
| 53 "registration_info.h", | 55 "registration_info.h", |
| 54 "system_encryptor.cc", | 56 "system_encryptor.cc", |
| 55 "system_encryptor.h", | 57 "system_encryptor.h", |
| 56 ] | 58 ] |
| 57 | 59 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 sources += [ | 149 sources += [ |
| 148 "gcm_account_mapper_unittest.cc", | 150 "gcm_account_mapper_unittest.cc", |
| 149 "gcm_channel_status_request_unittest.cc", | 151 "gcm_channel_status_request_unittest.cc", |
| 150 "gcm_client_impl_unittest.cc", | 152 "gcm_client_impl_unittest.cc", |
| 151 "gcm_delayed_task_controller_unittest.cc", | 153 "gcm_delayed_task_controller_unittest.cc", |
| 152 "gcm_driver_desktop_unittest.cc", | 154 "gcm_driver_desktop_unittest.cc", |
| 153 "gcm_stats_recorder_impl_unittest.cc", | 155 "gcm_stats_recorder_impl_unittest.cc", |
| 154 ] | 156 ] |
| 155 } | 157 } |
| 156 } | 158 } |
| OLD | NEW |