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_client.cc", | 15 "gcm_client.cc", |
16 "gcm_client.h", | 16 "gcm_client.h", |
17 "gcm_client_factory.cc", | 17 "gcm_client_factory.cc", |
18 "gcm_client_factory.h", | 18 "gcm_client_factory.h", |
19 "gcm_client_impl.cc", | 19 "gcm_client_impl.cc", |
20 "gcm_client_impl.h", | 20 "gcm_client_impl.h", |
| 21 "gcm_connection_observer.cc", |
| 22 "gcm_connection_observer.h", |
21 "gcm_driver.cc", | 23 "gcm_driver.cc", |
22 "gcm_driver.h", | 24 "gcm_driver.h", |
23 "gcm_driver_android.cc", | 25 "gcm_driver_android.cc", |
24 "gcm_driver_android.h", | 26 "gcm_driver_android.h", |
25 "gcm_driver_desktop.cc", | 27 "gcm_driver_desktop.cc", |
26 "gcm_driver_desktop.h", | 28 "gcm_driver_desktop.h", |
27 "gcm_stats_recorder_impl.cc", | 29 "gcm_stats_recorder_impl.cc", |
28 "gcm_stats_recorder_impl.h", | 30 "gcm_stats_recorder_impl.h", |
29 "system_encryptor.cc", | 31 "system_encryptor.cc", |
30 "system_encryptor.h", | 32 "system_encryptor.h", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "fake_gcm_client.cc", | 79 "fake_gcm_client.cc", |
78 "fake_gcm_client.h", | 80 "fake_gcm_client.h", |
79 "fake_gcm_client_factory.cc", | 81 "fake_gcm_client_factory.cc", |
80 "fake_gcm_client_factory.h", | 82 "fake_gcm_client_factory.h", |
81 ] | 83 ] |
82 deps -= [ "//google_apis/gcm" ] | 84 deps -= [ "//google_apis/gcm" ] |
83 } | 85 } |
84 } | 86 } |
85 | 87 |
86 #TODO(GYP) gcm_driver_java gcm_driver_jni_headers | 88 #TODO(GYP) gcm_driver_java gcm_driver_jni_headers |
OLD | NEW |