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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "gcm_stats_recorder_impl.cc", | 54 "gcm_stats_recorder_impl.cc", |
55 "gcm_stats_recorder_impl.h", | 55 "gcm_stats_recorder_impl.h", |
56 "registration_info.cc", | 56 "registration_info.cc", |
57 "registration_info.h", | 57 "registration_info.h", |
58 "system_encryptor.cc", | 58 "system_encryptor.cc", |
59 "system_encryptor.h", | 59 "system_encryptor.h", |
60 ] | 60 ] |
61 | 61 |
62 deps = [ | 62 deps = [ |
63 "//base", | 63 "//base", |
64 "//base:prefs", | |
65 "//components/gcm_driver/common", | 64 "//components/gcm_driver/common", |
66 "//components/gcm_driver/crypto", | 65 "//components/gcm_driver/crypto", |
67 "//components/keyed_service/core", | 66 "//components/keyed_service/core", |
68 "//components/os_crypt", | 67 "//components/os_crypt", |
69 "//components/pref_registry", | 68 "//components/pref_registry", |
| 69 "//components/prefs", |
70 "//components/signin/core/browser", | 70 "//components/signin/core/browser", |
71 "//components/sync_driver", | 71 "//components/sync_driver", |
72 "//components/version_info", | 72 "//components/version_info", |
73 "//google_apis", | 73 "//google_apis", |
74 "//google_apis/gcm", | 74 "//google_apis/gcm", |
75 "//net", | 75 "//net", |
76 "//sync/protocol", | 76 "//sync/protocol", |
77 "//url:url", | 77 "//url:url", |
78 ] | 78 ] |
79 allow_circular_includes_from = [ "//components/gcm_driver/crypto" ] | 79 allow_circular_includes_from = [ "//components/gcm_driver/crypto" ] |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 "gcm_delayed_task_controller_unittest.cc", | 152 "gcm_delayed_task_controller_unittest.cc", |
153 "gcm_driver_desktop_unittest.cc", | 153 "gcm_driver_desktop_unittest.cc", |
154 "gcm_stats_recorder_android_unittest.cc", | 154 "gcm_stats_recorder_android_unittest.cc", |
155 "gcm_stats_recorder_impl_unittest.cc", | 155 "gcm_stats_recorder_impl_unittest.cc", |
156 ] | 156 ] |
157 | 157 |
158 deps = [ | 158 deps = [ |
159 ":gcm_driver", | 159 ":gcm_driver", |
160 ":test_support", | 160 ":test_support", |
161 "//base", | 161 "//base", |
162 "//base:prefs_test_support", | |
163 "//base/test:test_support", | 162 "//base/test:test_support", |
| 163 "//components/prefs:test_support", |
164 "//google_apis:test_support", | 164 "//google_apis:test_support", |
165 "//google_apis/gcm:test_support", | 165 "//google_apis/gcm:test_support", |
166 "//net:test_support", | 166 "//net:test_support", |
167 "//sync/protocol", | 167 "//sync/protocol", |
168 "//testing/gtest", | 168 "//testing/gtest", |
169 "//third_party/protobuf:protobuf_lite", | 169 "//third_party/protobuf:protobuf_lite", |
170 ] | 170 ] |
171 | 171 |
172 if (is_android) { | 172 if (is_android) { |
173 sources -= [ | 173 sources -= [ |
174 "gcm_account_mapper_unittest.cc", | 174 "gcm_account_mapper_unittest.cc", |
175 "gcm_channel_status_request_unittest.cc", | 175 "gcm_channel_status_request_unittest.cc", |
176 "gcm_client_impl_unittest.cc", | 176 "gcm_client_impl_unittest.cc", |
177 "gcm_driver_desktop_unittest.cc", | 177 "gcm_driver_desktop_unittest.cc", |
178 "gcm_stats_recorder_impl_unittest.cc", | 178 "gcm_stats_recorder_impl_unittest.cc", |
179 ] | 179 ] |
180 } | 180 } |
181 } | 181 } |
OLD | NEW |