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

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

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "gcm_profile_service.h", 51 "gcm_profile_service.h",
52 "gcm_stats_recorder_impl.cc", 52 "gcm_stats_recorder_impl.cc",
53 "gcm_stats_recorder_impl.h", 53 "gcm_stats_recorder_impl.h",
54 "registration_info.cc", 54 "registration_info.cc",
55 "registration_info.h", 55 "registration_info.h",
56 "system_encryptor.cc", 56 "system_encryptor.cc",
57 "system_encryptor.h", 57 "system_encryptor.h",
58 ] 58 ]
59 59
60 deps = [ 60 deps = [
61 "crypto",
62 "//base", 61 "//base",
63 "//components/gcm_driver/common", 62 "//components/gcm_driver/common",
64 "//components/os_crypt", 63 "//components/os_crypt",
65 "//components/sync_driver", 64 "//components/sync_driver",
66 "//google_apis/gcm", 65 "//google_apis/gcm",
67 "//net", 66 "//net",
68 "//sync/protocol", 67 "//sync/protocol",
69 "//url:url", 68 "//url:url",
69 "crypto",
70 ] 70 ]
71 71
72 if (is_chromeos) { 72 if (is_chromeos) {
73 deps += [ "//components/timers" ] 73 deps += [ "//components/timers" ]
74 } 74 }
75 75
76 if (is_android) { 76 if (is_android) {
77 sources -= [ 77 sources -= [
78 "gcm_account_mapper.cc", 78 "gcm_account_mapper.cc",
79 "gcm_account_mapper.h", 79 "gcm_account_mapper.h",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 sources += [ 149 sources += [
150 "gcm_account_mapper_unittest.cc", 150 "gcm_account_mapper_unittest.cc",
151 "gcm_channel_status_request_unittest.cc", 151 "gcm_channel_status_request_unittest.cc",
152 "gcm_client_impl_unittest.cc", 152 "gcm_client_impl_unittest.cc",
153 "gcm_delayed_task_controller_unittest.cc", 153 "gcm_delayed_task_controller_unittest.cc",
154 "gcm_driver_desktop_unittest.cc", 154 "gcm_driver_desktop_unittest.cc",
155 "gcm_stats_recorder_impl_unittest.cc", 155 "gcm_stats_recorder_impl_unittest.cc",
156 ] 156 ]
157 } 157 }
158 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698