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

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

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Rebase 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "gcm_profile_service.h", 49 "gcm_profile_service.h",
50 "gcm_stats_recorder_impl.cc", 50 "gcm_stats_recorder_impl.cc",
51 "gcm_stats_recorder_impl.h", 51 "gcm_stats_recorder_impl.h",
52 "registration_info.cc", 52 "registration_info.cc",
53 "registration_info.h", 53 "registration_info.h",
54 "system_encryptor.cc", 54 "system_encryptor.cc",
55 "system_encryptor.h", 55 "system_encryptor.h",
56 ] 56 ]
57 57
58 deps = [ 58 deps = [
59 "crypto",
60 "//base", 59 "//base",
61 "//components/gcm_driver/common", 60 "//components/gcm_driver/common",
62 "//components/os_crypt", 61 "//components/os_crypt",
63 "//components/sync_driver", 62 "//components/sync_driver",
64 "//google_apis/gcm", 63 "//google_apis/gcm",
65 "//net", 64 "//net",
66 "//sync/protocol", 65 "//sync/protocol",
67 "//url:url", 66 "//url:url",
67 "crypto",
68 ] 68 ]
69 69
70 if (is_chromeos) { 70 if (is_chromeos) {
71 deps += [ "//components/timers" ] 71 deps += [ "//components/timers" ]
72 } 72 }
73 73
74 if (is_android) { 74 if (is_android) {
75 sources -= [ 75 sources -= [
76 "gcm_account_mapper.cc", 76 "gcm_account_mapper.cc",
77 "gcm_account_mapper.h", 77 "gcm_account_mapper.h",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 sources += [ 147 sources += [
148 "gcm_account_mapper_unittest.cc", 148 "gcm_account_mapper_unittest.cc",
149 "gcm_channel_status_request_unittest.cc", 149 "gcm_channel_status_request_unittest.cc",
150 "gcm_client_impl_unittest.cc", 150 "gcm_client_impl_unittest.cc",
151 "gcm_delayed_task_controller_unittest.cc", 151 "gcm_delayed_task_controller_unittest.cc",
152 "gcm_driver_desktop_unittest.cc", 152 "gcm_driver_desktop_unittest.cc",
153 "gcm_stats_recorder_impl_unittest.cc", 153 "gcm_stats_recorder_impl_unittest.cc",
154 ] 154 ]
155 } 155 }
156 } 156 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698