Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: components/gcm_driver/BUILD.gn

Issue 2111973002: Add support for GCM subtypes to desktop Instance ID implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iid9push
Patch Set: Address jianli's review comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 "//components/crx_file",
64 "//components/gcm_driver/common", 65 "//components/gcm_driver/common",
65 "//components/gcm_driver/crypto", 66 "//components/gcm_driver/crypto",
66 "//components/keyed_service/core", 67 "//components/keyed_service/core",
67 "//components/os_crypt", 68 "//components/os_crypt",
68 "//components/pref_registry", 69 "//components/pref_registry",
69 "//components/prefs", 70 "//components/prefs",
70 "//components/signin/core/browser", 71 "//components/signin/core/browser",
71 "//components/sync/protocol", 72 "//components/sync/protocol",
72 "//components/sync_driver", 73 "//components/sync_driver",
73 "//components/version_info", 74 "//components/version_info",
(...skipping 20 matching lines...) Expand all
94 "gcm_client_factory.h", 95 "gcm_client_factory.h",
95 "gcm_client_impl.cc", 96 "gcm_client_impl.cc",
96 "gcm_client_impl.h", 97 "gcm_client_impl.h",
97 "gcm_desktop_utils.cc", 98 "gcm_desktop_utils.cc",
98 "gcm_desktop_utils.h", 99 "gcm_desktop_utils.h",
99 "gcm_driver_desktop.cc", 100 "gcm_driver_desktop.cc",
100 "gcm_driver_desktop.h", 101 "gcm_driver_desktop.h",
101 "gcm_stats_recorder_impl.cc", 102 "gcm_stats_recorder_impl.cc",
102 "gcm_stats_recorder_impl.h", 103 "gcm_stats_recorder_impl.h",
103 ] 104 ]
104 deps -= [ "//google_apis/gcm" ] 105 deps -= [
106 "//components/crx_file",
107 "//google_apis/gcm",
108 ]
105 deps += [ "android:jni_headers" ] 109 deps += [ "android:jni_headers" ]
106 } 110 }
107 } 111 }
108 112
109 # GYP version: components/gcm_driver.gypi:gcm_driver_test_support 113 # GYP version: components/gcm_driver.gypi:gcm_driver_test_support
110 static_library("test_support") { 114 static_library("test_support") {
111 testonly = true 115 testonly = true
112 sources = [ 116 sources = [
113 "fake_gcm_app_handler.cc", 117 "fake_gcm_app_handler.cc",
114 "fake_gcm_app_handler.h", 118 "fake_gcm_app_handler.h",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 if (is_android) { 177 if (is_android) {
174 sources -= [ 178 sources -= [
175 "gcm_account_mapper_unittest.cc", 179 "gcm_account_mapper_unittest.cc",
176 "gcm_channel_status_request_unittest.cc", 180 "gcm_channel_status_request_unittest.cc",
177 "gcm_client_impl_unittest.cc", 181 "gcm_client_impl_unittest.cc",
178 "gcm_driver_desktop_unittest.cc", 182 "gcm_driver_desktop_unittest.cc",
179 "gcm_stats_recorder_impl_unittest.cc", 183 "gcm_stats_recorder_impl_unittest.cc",
180 ] 184 ]
181 } 185 }
182 } 186 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698