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

Side by Side Diff: components/gcm_driver.gypi

Issue 1325063002: Componentizing chrome/browser/services/gcm/gcm_desktop_utils.cc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years, 3 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/gcm_driver/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/gcm_driver/common 8 # GN version: //components/gcm_driver/common
9 'target_name': 'gcm_driver_common', 9 'target_name': 'gcm_driver_common',
10 'type': '<(component)', 10 'type': '<(component)',
(...skipping 11 matching lines...) Expand all
22 ], 22 ],
23 }, 23 },
24 { 24 {
25 # GN version: //components/gcm_driver 25 # GN version: //components/gcm_driver
26 'target_name': 'gcm_driver', 26 'target_name': 'gcm_driver',
27 'type': 'static_library', 27 'type': 'static_library',
28 'dependencies': [ 28 'dependencies': [
29 'gcm_driver_common', 29 'gcm_driver_common',
30 'gcm_driver_crypto', 30 'gcm_driver_crypto',
31 'os_crypt', 31 'os_crypt',
32 'sync_driver',
32 '../base/base.gyp:base', 33 '../base/base.gyp:base',
33 '../google_apis/gcm/gcm.gyp:gcm', 34 '../google_apis/gcm/gcm.gyp:gcm',
34 '../net/net.gyp:net', 35 '../net/net.gyp:net',
35 '../sync/sync.gyp:sync_proto', 36 '../sync/sync.gyp:sync_proto',
37 '../url/url.gyp:url_lib',
36 ], 38 ],
37 'include_dirs': [ 39 'include_dirs': [
38 '..', 40 '..',
39 ], 41 ],
40 'sources': [ 42 'sources': [
41 # Note: file list duplicated in GN build. 43 # Note: file list duplicated in GN build.
42 'gcm_driver/android/component_jni_registrar.cc', 44 'gcm_driver/android/component_jni_registrar.cc',
43 'gcm_driver/android/component_jni_registrar.h', 45 'gcm_driver/android/component_jni_registrar.h',
44 'gcm_driver/default_gcm_app_handler.cc', 46 'gcm_driver/default_gcm_app_handler.cc',
45 'gcm_driver/default_gcm_app_handler.h', 47 'gcm_driver/default_gcm_app_handler.h',
(...skipping 14 matching lines...) Expand all
60 'gcm_driver/gcm_client.cc', 62 'gcm_driver/gcm_client.cc',
61 'gcm_driver/gcm_client.h', 63 'gcm_driver/gcm_client.h',
62 'gcm_driver/gcm_client_factory.cc', 64 'gcm_driver/gcm_client_factory.cc',
63 'gcm_driver/gcm_client_factory.h', 65 'gcm_driver/gcm_client_factory.h',
64 'gcm_driver/gcm_client_impl.cc', 66 'gcm_driver/gcm_client_impl.cc',
65 'gcm_driver/gcm_client_impl.h', 67 'gcm_driver/gcm_client_impl.h',
66 'gcm_driver/gcm_connection_observer.cc', 68 'gcm_driver/gcm_connection_observer.cc',
67 'gcm_driver/gcm_connection_observer.h', 69 'gcm_driver/gcm_connection_observer.h',
68 'gcm_driver/gcm_delayed_task_controller.cc', 70 'gcm_driver/gcm_delayed_task_controller.cc',
69 'gcm_driver/gcm_delayed_task_controller.h', 71 'gcm_driver/gcm_delayed_task_controller.h',
72 'gcm_driver/gcm_desktop_utils.cc',
73 'gcm_driver/gcm_desktop_utils.h',
70 'gcm_driver/gcm_driver.cc', 74 'gcm_driver/gcm_driver.cc',
71 'gcm_driver/gcm_driver.h', 75 'gcm_driver/gcm_driver.h',
72 'gcm_driver/gcm_driver_android.cc', 76 'gcm_driver/gcm_driver_android.cc',
73 'gcm_driver/gcm_driver_android.h', 77 'gcm_driver/gcm_driver_android.h',
74 'gcm_driver/gcm_driver_desktop.cc', 78 'gcm_driver/gcm_driver_desktop.cc',
75 'gcm_driver/gcm_driver_desktop.h', 79 'gcm_driver/gcm_driver_desktop.h',
76 'gcm_driver/gcm_stats_recorder_impl.cc', 80 'gcm_driver/gcm_stats_recorder_impl.cc',
77 'gcm_driver/gcm_stats_recorder_impl.h', 81 'gcm_driver/gcm_stats_recorder_impl.h',
78 'gcm_driver/registration_info.cc', 82 'gcm_driver/registration_info.cc',
79 'gcm_driver/registration_info.h', 83 'gcm_driver/registration_info.h',
(...skipping 12 matching lines...) Expand all
92 'gcm_driver/gcm_account_mapper.cc', 96 'gcm_driver/gcm_account_mapper.cc',
93 'gcm_driver/gcm_account_mapper.h', 97 'gcm_driver/gcm_account_mapper.h',
94 'gcm_driver/gcm_channel_status_request.cc', 98 'gcm_driver/gcm_channel_status_request.cc',
95 'gcm_driver/gcm_channel_status_request.h', 99 'gcm_driver/gcm_channel_status_request.h',
96 'gcm_driver/gcm_channel_status_syncer.cc', 100 'gcm_driver/gcm_channel_status_syncer.cc',
97 'gcm_driver/gcm_channel_status_syncer.h', 101 'gcm_driver/gcm_channel_status_syncer.h',
98 'gcm_driver/gcm_client_factory.cc', 102 'gcm_driver/gcm_client_factory.cc',
99 'gcm_driver/gcm_client_factory.h', 103 'gcm_driver/gcm_client_factory.h',
100 'gcm_driver/gcm_client_impl.cc', 104 'gcm_driver/gcm_client_impl.cc',
101 'gcm_driver/gcm_client_impl.h', 105 'gcm_driver/gcm_client_impl.h',
106 'gcm_driver/gcm_desktop_utils.cc',
107 'gcm_driver/gcm_desktop_utils.h',
102 'gcm_driver/gcm_driver_desktop.cc', 108 'gcm_driver/gcm_driver_desktop.cc',
103 'gcm_driver/gcm_driver_desktop.h', 109 'gcm_driver/gcm_driver_desktop.h',
104 'gcm_driver/gcm_stats_recorder_impl.cc', 110 'gcm_driver/gcm_stats_recorder_impl.cc',
105 'gcm_driver/gcm_stats_recorder_impl.h', 111 'gcm_driver/gcm_stats_recorder_impl.h',
106 ], 112 ],
107 }], 113 }],
108 ['chromeos == 1', { 114 ['chromeos == 1', {
109 'dependencies': [ 115 'dependencies': [
110 'timers', 116 'timers',
111 ], 117 ],
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 'variables': { 282 'variables': {
277 'jni_gen_package': 'components/gcm_driver', 283 'jni_gen_package': 'components/gcm_driver',
278 }, 284 },
279 'includes': [ '../build/jni_generator.gypi' ], 285 'includes': [ '../build/jni_generator.gypi' ],
280 }, 286 },
281 ], 287 ],
282 }, 288 },
283 ], 289 ],
284 ], 290 ],
285 } 291 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/gcm_driver/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698