| 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 28 matching lines...) Expand all Loading... |
| 39 "gcm_driver_desktop.h", | 39 "gcm_driver_desktop.h", |
| 40 "gcm_stats_recorder_impl.cc", | 40 "gcm_stats_recorder_impl.cc", |
| 41 "gcm_stats_recorder_impl.h", | 41 "gcm_stats_recorder_impl.h", |
| 42 "registration_info.cc", | 42 "registration_info.cc", |
| 43 "registration_info.h", | 43 "registration_info.h", |
| 44 "system_encryptor.cc", | 44 "system_encryptor.cc", |
| 45 "system_encryptor.h", | 45 "system_encryptor.h", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 "crypto", |
| 49 "//base", | 50 "//base", |
| 50 "//components/gcm_driver/common", | 51 "//components/gcm_driver/common", |
| 51 "//components/os_crypt", | 52 "//components/os_crypt", |
| 52 "//google_apis/gcm", | 53 "//google_apis/gcm", |
| 53 "//net", | 54 "//net", |
| 54 "//sync/protocol", | 55 "//sync/protocol", |
| 55 ] | 56 ] |
| 56 | 57 |
| 57 if (is_chromeos) { | 58 if (is_chromeos) { |
| 58 deps += [ "//components/timers" ] | 59 deps += [ "//components/timers" ] |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 ] | 126 ] |
| 126 | 127 |
| 127 deps = [ | 128 deps = [ |
| 128 ":gcm_driver", | 129 ":gcm_driver", |
| 129 ":test_support", | 130 ":test_support", |
| 130 "//testing/gtest", | 131 "//testing/gtest", |
| 131 "//third_party/protobuf:protobuf_lite", | 132 "//third_party/protobuf:protobuf_lite", |
| 132 ] | 133 ] |
| 133 } | 134 } |
| 134 } | 135 } |
| OLD | NEW |