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_desktop_utils.cc", | 36 "gcm_desktop_utils.cc", |
37 "gcm_desktop_utils.h", | 37 "gcm_desktop_utils.h", |
38 "gcm_driver.cc", | 38 "gcm_driver.cc", |
39 "gcm_driver.h", | 39 "gcm_driver.h", |
40 "gcm_driver_android.cc", | 40 "gcm_driver_android.cc", |
41 "gcm_driver_android.h", | 41 "gcm_driver_android.h", |
| 42 "gcm_driver_constants.cc", |
| 43 "gcm_driver_constants.h", |
42 "gcm_driver_desktop.cc", | 44 "gcm_driver_desktop.cc", |
43 "gcm_driver_desktop.h", | 45 "gcm_driver_desktop.h", |
44 "gcm_internals_constants.cc", | 46 "gcm_internals_constants.cc", |
45 "gcm_internals_constants.h", | 47 "gcm_internals_constants.h", |
| 48 "gcm_profile_service.cc", |
| 49 "gcm_profile_service.h", |
46 "gcm_stats_recorder_impl.cc", | 50 "gcm_stats_recorder_impl.cc", |
47 "gcm_stats_recorder_impl.h", | 51 "gcm_stats_recorder_impl.h", |
48 "registration_info.cc", | 52 "registration_info.cc", |
49 "registration_info.h", | 53 "registration_info.h", |
50 "system_encryptor.cc", | 54 "system_encryptor.cc", |
51 "system_encryptor.h", | 55 "system_encryptor.h", |
52 ] | 56 ] |
53 | 57 |
54 deps = [ | 58 deps = [ |
55 "crypto", | 59 "crypto", |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 ] | 143 ] |
140 | 144 |
141 deps = [ | 145 deps = [ |
142 ":gcm_driver", | 146 ":gcm_driver", |
143 ":test_support", | 147 ":test_support", |
144 "//testing/gtest", | 148 "//testing/gtest", |
145 "//third_party/protobuf:protobuf_lite", | 149 "//third_party/protobuf:protobuf_lite", |
146 ] | 150 ] |
147 } | 151 } |
148 } | 152 } |
OLD | NEW |