| 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", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 public_deps = [ | 61 public_deps = [ |
| 62 "//base", | 62 "//base", |
| 63 "//components/gcm_driver/common", | 63 "//components/gcm_driver/common", |
| 64 "//components/gcm_driver/crypto", | 64 "//components/gcm_driver/crypto", |
| 65 "//components/gcm_driver/instance_id", | 65 "//components/gcm_driver/instance_id", |
| 66 ] | 66 ] |
| 67 deps = [ | 67 deps = [ |
| 68 "//base:i18n", | 68 "//base:i18n", |
| 69 "//components/crx_file", | 69 "//components/crx_file", |
| 70 "//components/data_use_measurement/core", |
| 70 "//components/keyed_service/core", | 71 "//components/keyed_service/core", |
| 71 "//components/os_crypt", | 72 "//components/os_crypt", |
| 72 "//components/pref_registry", | 73 "//components/pref_registry", |
| 73 "//components/prefs", | 74 "//components/prefs", |
| 74 "//components/signin/core/browser", | 75 "//components/signin/core/browser", |
| 75 "//components/sync", | 76 "//components/sync", |
| 76 "//components/version_info", | 77 "//components/version_info", |
| 77 "//google_apis", | 78 "//google_apis", |
| 78 "//google_apis/gcm", | 79 "//google_apis/gcm", |
| 79 "//net", | 80 "//net", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 if (is_android) { | 185 if (is_android) { |
| 185 sources -= [ | 186 sources -= [ |
| 186 "gcm_account_mapper_unittest.cc", | 187 "gcm_account_mapper_unittest.cc", |
| 187 "gcm_channel_status_request_unittest.cc", | 188 "gcm_channel_status_request_unittest.cc", |
| 188 "gcm_client_impl_unittest.cc", | 189 "gcm_client_impl_unittest.cc", |
| 189 "gcm_driver_desktop_unittest.cc", | 190 "gcm_driver_desktop_unittest.cc", |
| 190 "gcm_stats_recorder_impl_unittest.cc", | 191 "gcm_stats_recorder_impl_unittest.cc", |
| 191 ] | 192 ] |
| 192 } | 193 } |
| 193 } | 194 } |
| OLD | NEW |