| 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 static_library("gcm_driver") { | 5 static_library("gcm_driver") { |
| 6 sources = [ | 6 sources = [ |
| 7 "android/component_jni_registrar.cc", | 7 "android/component_jni_registrar.cc", |
| 8 "android/component_jni_registrar.h", | 8 "android/component_jni_registrar.h", |
| 9 "default_gcm_app_handler.cc", | 9 "default_gcm_app_handler.cc", |
| 10 "default_gcm_app_handler.h", | 10 "default_gcm_app_handler.h", |
| 11 "gcm_activity.cc", | 11 "gcm_activity.cc", |
| 12 "gcm_activity.h", | 12 "gcm_activity.h", |
| 13 "gcm_app_handler.cc", | 13 "gcm_app_handler.cc", |
| 14 "gcm_app_handler.h", | 14 "gcm_app_handler.h", |
| 15 "gcm_backoff_policy.cc", |
| 16 "gcm_backoff_policy.h", |
| 17 "gcm_channel_status_request.cc", |
| 18 "gcm_channel_status_request.h", |
| 15 "gcm_client.cc", | 19 "gcm_client.cc", |
| 16 "gcm_client.h", | 20 "gcm_client.h", |
| 17 "gcm_client_factory.cc", | 21 "gcm_client_factory.cc", |
| 18 "gcm_client_factory.h", | 22 "gcm_client_factory.h", |
| 19 "gcm_client_impl.cc", | 23 "gcm_client_impl.cc", |
| 20 "gcm_client_impl.h", | 24 "gcm_client_impl.h", |
| 21 "gcm_connection_observer.cc", | 25 "gcm_connection_observer.cc", |
| 22 "gcm_connection_observer.h", | 26 "gcm_connection_observer.h", |
| 23 "gcm_driver.cc", | 27 "gcm_driver.cc", |
| 24 "gcm_driver.h", | 28 "gcm_driver.h", |
| 25 "gcm_driver_android.cc", | 29 "gcm_driver_android.cc", |
| 26 "gcm_driver_android.h", | 30 "gcm_driver_android.h", |
| 27 "gcm_driver_desktop.cc", | 31 "gcm_driver_desktop.cc", |
| 28 "gcm_driver_desktop.h", | 32 "gcm_driver_desktop.h", |
| 29 "gcm_stats_recorder_impl.cc", | 33 "gcm_stats_recorder_impl.cc", |
| 30 "gcm_stats_recorder_impl.h", | 34 "gcm_stats_recorder_impl.h", |
| 31 "system_encryptor.cc", | 35 "system_encryptor.cc", |
| 32 "system_encryptor.h", | 36 "system_encryptor.h", |
| 33 ] | 37 ] |
| 34 | 38 |
| 35 deps = [ | 39 deps = [ |
| 36 "//base", | 40 "//base", |
| 41 "//components/gcm_driver/proto", |
| 37 "//components/os_crypt", | 42 "//components/os_crypt", |
| 38 "//google_apis/gcm", | 43 "//google_apis/gcm", |
| 39 "//net", | 44 "//net", |
| 40 ] | 45 ] |
| 41 | 46 |
| 42 if (is_android) { | 47 if (is_android) { |
| 43 sources -= [ | 48 sources -= [ |
| 44 "gcm_client_factory.cc", | 49 "gcm_client_factory.cc", |
| 45 "gcm_client_factory.h", | 50 "gcm_client_factory.h", |
| 46 "gcm_client_impl.cc", | 51 "gcm_client_impl.cc", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "fake_gcm_client.cc", | 84 "fake_gcm_client.cc", |
| 80 "fake_gcm_client.h", | 85 "fake_gcm_client.h", |
| 81 "fake_gcm_client_factory.cc", | 86 "fake_gcm_client_factory.cc", |
| 82 "fake_gcm_client_factory.h", | 87 "fake_gcm_client_factory.h", |
| 83 ] | 88 ] |
| 84 deps -= [ "//google_apis/gcm" ] | 89 deps -= [ "//google_apis/gcm" ] |
| 85 } | 90 } |
| 86 } | 91 } |
| 87 | 92 |
| 88 #TODO(GYP) gcm_driver_java gcm_driver_jni_headers | 93 #TODO(GYP) gcm_driver_java gcm_driver_jni_headers |
| OLD | NEW |