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_delayed_task_controller.cc", | 32 "gcm_delayed_task_controller.cc", |
33 "gcm_delayed_task_controller.h", | 33 "gcm_delayed_task_controller.h", |
34 "gcm_driver.cc", | 34 "gcm_driver.cc", |
35 "gcm_driver.h", | 35 "gcm_driver.h", |
36 "gcm_driver_android.cc", | 36 "gcm_driver_android.cc", |
37 "gcm_driver_android.h", | 37 "gcm_driver_android.h", |
38 "gcm_driver_desktop.cc", | 38 "gcm_driver_desktop.cc", |
39 "gcm_driver_desktop.h", | 39 "gcm_driver_desktop.h", |
40 "gcm_stats_recorder_impl.cc", | 40 "gcm_stats_recorder_impl.cc", |
41 "gcm_stats_recorder_impl.h", | 41 "gcm_stats_recorder_impl.h", |
| 42 "registration_info.cc", |
| 43 "registration_info.h", |
42 "system_encryptor.cc", | 44 "system_encryptor.cc", |
43 "system_encryptor.h", | 45 "system_encryptor.h", |
44 ] | 46 ] |
45 | 47 |
46 deps = [ | 48 deps = [ |
47 "//base", | 49 "//base", |
48 "//components/os_crypt", | 50 "//components/os_crypt", |
49 "//google_apis/gcm", | 51 "//google_apis/gcm", |
50 "//net", | 52 "//net", |
51 "//sync/protocol", | 53 "//sync/protocol", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 if (is_android) { | 104 if (is_android) { |
103 sources -= [ | 105 sources -= [ |
104 "fake_gcm_client.cc", | 106 "fake_gcm_client.cc", |
105 "fake_gcm_client.h", | 107 "fake_gcm_client.h", |
106 "fake_gcm_client_factory.cc", | 108 "fake_gcm_client_factory.cc", |
107 "fake_gcm_client_factory.h", | 109 "fake_gcm_client_factory.h", |
108 ] | 110 ] |
109 deps -= [ "//google_apis/gcm" ] | 111 deps -= [ "//google_apis/gcm" ] |
110 } | 112 } |
111 } | 113 } |
OLD | NEW |