| 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", | 15 "gcm_backoff_policy.cc", |
| 16 "gcm_backoff_policy.h", | 16 "gcm_backoff_policy.h", |
| 17 "gcm_channel_status_request.cc", | 17 "gcm_channel_status_request.cc", |
| 18 "gcm_channel_status_request.h", | 18 "gcm_channel_status_request.h", |
| 19 "gcm_channel_status_syncer.cc", |
| 20 "gcm_channel_status_syncer.h", |
| 19 "gcm_client.cc", | 21 "gcm_client.cc", |
| 20 "gcm_client.h", | 22 "gcm_client.h", |
| 21 "gcm_client_factory.cc", | 23 "gcm_client_factory.cc", |
| 22 "gcm_client_factory.h", | 24 "gcm_client_factory.h", |
| 23 "gcm_client_impl.cc", | 25 "gcm_client_impl.cc", |
| 24 "gcm_client_impl.h", | 26 "gcm_client_impl.h", |
| 25 "gcm_connection_observer.cc", | 27 "gcm_connection_observer.cc", |
| 26 "gcm_connection_observer.h", | 28 "gcm_connection_observer.h", |
| 27 "gcm_delayed_task_controller.cc", | 29 "gcm_delayed_task_controller.cc", |
| 28 "gcm_delayed_task_controller.h", | 30 "gcm_delayed_task_controller.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 43 "//components/gcm_driver/proto", | 45 "//components/gcm_driver/proto", |
| 44 "//components/os_crypt", | 46 "//components/os_crypt", |
| 45 "//google_apis/gcm", | 47 "//google_apis/gcm", |
| 46 "//net", | 48 "//net", |
| 47 ] | 49 ] |
| 48 | 50 |
| 49 if (is_android) { | 51 if (is_android) { |
| 50 sources -= [ | 52 sources -= [ |
| 51 "gcm_channel_status_request.cc", | 53 "gcm_channel_status_request.cc", |
| 52 "gcm_channel_status_request.h", | 54 "gcm_channel_status_request.h", |
| 55 "gcm_channel_status_syncer.cc", |
| 56 "gcm_channel_status_syncer.h", |
| 53 "gcm_client_factory.cc", | 57 "gcm_client_factory.cc", |
| 54 "gcm_client_factory.h", | 58 "gcm_client_factory.h", |
| 55 "gcm_client_impl.cc", | 59 "gcm_client_impl.cc", |
| 56 "gcm_client_impl.h", | 60 "gcm_client_impl.h", |
| 57 "gcm_delayed_task_controller.cc", | 61 "gcm_delayed_task_controller.cc", |
| 58 "gcm_delayed_task_controller.h", | 62 "gcm_delayed_task_controller.h", |
| 59 "gcm_driver_desktop.cc", | 63 "gcm_driver_desktop.cc", |
| 60 "gcm_driver_desktop.h", | 64 "gcm_driver_desktop.h", |
| 61 "gcm_stats_recorder_impl.cc", | 65 "gcm_stats_recorder_impl.cc", |
| 62 "gcm_stats_recorder_impl.h", | 66 "gcm_stats_recorder_impl.h", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "fake_gcm_client.cc", | 98 "fake_gcm_client.cc", |
| 95 "fake_gcm_client.h", | 99 "fake_gcm_client.h", |
| 96 "fake_gcm_client_factory.cc", | 100 "fake_gcm_client_factory.cc", |
| 97 "fake_gcm_client_factory.h", | 101 "fake_gcm_client_factory.h", |
| 98 ] | 102 ] |
| 99 deps -= [ "//google_apis/gcm" ] | 103 deps -= [ "//google_apis/gcm" ] |
| 100 } | 104 } |
| 101 } | 105 } |
| 102 | 106 |
| 103 #TODO(GYP) gcm_driver_java gcm_driver_jni_headers | 107 #TODO(GYP) gcm_driver_java gcm_driver_jni_headers |
| OLD | NEW |