| 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 21 matching lines...) Expand all  Loading... | 
| 32     "gcm_connection_observer.cc", | 32     "gcm_connection_observer.cc", | 
| 33     "gcm_connection_observer.h", | 33     "gcm_connection_observer.h", | 
| 34     "gcm_delayed_task_controller.cc", | 34     "gcm_delayed_task_controller.cc", | 
| 35     "gcm_delayed_task_controller.h", | 35     "gcm_delayed_task_controller.h", | 
| 36     "gcm_driver.cc", | 36     "gcm_driver.cc", | 
| 37     "gcm_driver.h", | 37     "gcm_driver.h", | 
| 38     "gcm_driver_android.cc", | 38     "gcm_driver_android.cc", | 
| 39     "gcm_driver_android.h", | 39     "gcm_driver_android.h", | 
| 40     "gcm_driver_desktop.cc", | 40     "gcm_driver_desktop.cc", | 
| 41     "gcm_driver_desktop.h", | 41     "gcm_driver_desktop.h", | 
|  | 42     "gcm_internals_constants.cc", | 
|  | 43     "gcm_internals_constants.h", | 
| 42     "gcm_stats_recorder_impl.cc", | 44     "gcm_stats_recorder_impl.cc", | 
| 43     "gcm_stats_recorder_impl.h", | 45     "gcm_stats_recorder_impl.h", | 
| 44     "registration_info.cc", | 46     "registration_info.cc", | 
| 45     "registration_info.h", | 47     "registration_info.h", | 
| 46     "system_encryptor.cc", | 48     "system_encryptor.cc", | 
| 47     "system_encryptor.h", | 49     "system_encryptor.h", | 
| 48   ] | 50   ] | 
| 49 | 51 | 
| 50   deps = [ | 52   deps = [ | 
| 51     "crypto", | 53     "crypto", | 
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 129     ] | 131     ] | 
| 130 | 132 | 
| 131     deps = [ | 133     deps = [ | 
| 132       ":gcm_driver", | 134       ":gcm_driver", | 
| 133       ":test_support", | 135       ":test_support", | 
| 134       "//testing/gtest", | 136       "//testing/gtest", | 
| 135       "//third_party/protobuf:protobuf_lite", | 137       "//third_party/protobuf:protobuf_lite", | 
| 136     ] | 138     ] | 
| 137   } | 139   } | 
| 138 } | 140 } | 
| OLD | NEW | 
|---|