| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 testonly = true | 111 testonly = true |
| 112 sources = [ | 112 sources = [ |
| 113 "fake_gcm_app_handler.cc", | 113 "fake_gcm_app_handler.cc", |
| 114 "fake_gcm_app_handler.h", | 114 "fake_gcm_app_handler.h", |
| 115 "fake_gcm_client.cc", | 115 "fake_gcm_client.cc", |
| 116 "fake_gcm_client.h", | 116 "fake_gcm_client.h", |
| 117 "fake_gcm_client_factory.cc", | 117 "fake_gcm_client_factory.cc", |
| 118 "fake_gcm_client_factory.h", | 118 "fake_gcm_client_factory.h", |
| 119 "fake_gcm_driver.cc", | 119 "fake_gcm_driver.cc", |
| 120 "fake_gcm_driver.h", | 120 "fake_gcm_driver.h", |
| 121 "fake_gcm_profile_service.cc", |
| 122 "fake_gcm_profile_service.h", |
| 121 ] | 123 ] |
| 122 | 124 |
| 123 public_deps = [ | 125 public_deps = [ |
| 124 ":gcm_driver", | 126 ":gcm_driver", |
| 125 ] | 127 ] |
| 126 deps = [ | 128 deps = [ |
| 127 "//base", | 129 "//base", |
| 128 "//google_apis/gcm:test_support", | 130 "//google_apis/gcm:test_support", |
| 129 "//net", | 131 "//net", |
| 130 "//testing/gtest", | 132 "//testing/gtest", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 if (is_android) { | 175 if (is_android) { |
| 174 sources -= [ | 176 sources -= [ |
| 175 "gcm_account_mapper_unittest.cc", | 177 "gcm_account_mapper_unittest.cc", |
| 176 "gcm_channel_status_request_unittest.cc", | 178 "gcm_channel_status_request_unittest.cc", |
| 177 "gcm_client_impl_unittest.cc", | 179 "gcm_client_impl_unittest.cc", |
| 178 "gcm_driver_desktop_unittest.cc", | 180 "gcm_driver_desktop_unittest.cc", |
| 179 "gcm_stats_recorder_impl_unittest.cc", | 181 "gcm_stats_recorder_impl_unittest.cc", |
| 180 ] | 182 ] |
| 181 } | 183 } |
| 182 } | 184 } |
| OLD | NEW |