Chromium Code Reviews| 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", |
| 11 "default_gcm_app_handler.h", | 11 "default_gcm_app_handler.h", |
| 12 "gcm_activity.cc", | 12 "gcm_activity.cc", |
| 13 "gcm_activity.h", | 13 "gcm_activity.h", |
| 14 "gcm_account_mapper.cc", | |
|
jianli
2014/09/24 21:21:31
should these 2 files be excluded from Android targ
fgorski
2014/09/24 22:25:40
No GMS Core handles that on Android, and we don't
| |
| 15 "gcm_account_mapper.h", | |
| 14 "gcm_app_handler.cc", | 16 "gcm_app_handler.cc", |
| 15 "gcm_app_handler.h", | 17 "gcm_app_handler.h", |
| 16 "gcm_backoff_policy.cc", | 18 "gcm_backoff_policy.cc", |
| 17 "gcm_backoff_policy.h", | 19 "gcm_backoff_policy.h", |
| 18 "gcm_channel_status_request.cc", | 20 "gcm_channel_status_request.cc", |
| 19 "gcm_channel_status_request.h", | 21 "gcm_channel_status_request.h", |
| 20 "gcm_channel_status_syncer.cc", | 22 "gcm_channel_status_syncer.cc", |
| 21 "gcm_channel_status_syncer.h", | 23 "gcm_channel_status_syncer.h", |
| 22 "gcm_client.cc", | 24 "gcm_client.cc", |
| 23 "gcm_client.h", | 25 "gcm_client.h", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 109 import("//build/config/android/rules.gni") | 111 import("//build/config/android/rules.gni") |
| 110 | 112 |
| 111 # GYP version: components/gcm_driver.gypi:gcm_driver_jni_headers | 113 # GYP version: components/gcm_driver.gypi:gcm_driver_jni_headers |
| 112 generate_jni("jni_headers") { | 114 generate_jni("jni_headers") { |
| 113 sources = [ | 115 sources = [ |
| 114 "android/java/src/org/chromium/components/gcm_driver/GCMDriver.java", | 116 "android/java/src/org/chromium/components/gcm_driver/GCMDriver.java", |
| 115 ] | 117 ] |
| 116 jni_package = "components/gcm_driver" | 118 jni_package = "components/gcm_driver" |
| 117 } | 119 } |
| 118 } | 120 } |
| OLD | NEW |