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

Side by Side Diff: components/gcm_driver.gypi

Issue 530253002: Add GCMChannelStatusRequest to talk with server for all users (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android build Created 6 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
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 8 # GN version: //components/gcm_driver
9 'target_name': 'gcm_driver', 9 'target_name': 'gcm_driver',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 'os_crypt', 12 'os_crypt',
13 '../base/base.gyp:base', 13 '../base/base.gyp:base',
14 '../google_apis/gcm/gcm.gyp:gcm', 14 '../google_apis/gcm/gcm.gyp:gcm',
15 '../net/net.gyp:net', 15 '../net/net.gyp:net',
16 ], 16 ],
17 'include_dirs': [ 17 'include_dirs': [
18 '..', 18 '..',
19 ], 19 ],
20 'sources': [ 20 'sources': [
21 # Note: file list duplicated in GN build. 21 # Note: file list duplicated in GN build.
22 'gcm_driver/android/component_jni_registrar.cc', 22 'gcm_driver/android/component_jni_registrar.cc',
23 'gcm_driver/android/component_jni_registrar.h', 23 'gcm_driver/android/component_jni_registrar.h',
24 'gcm_driver/default_gcm_app_handler.cc', 24 'gcm_driver/default_gcm_app_handler.cc',
25 'gcm_driver/default_gcm_app_handler.h', 25 'gcm_driver/default_gcm_app_handler.h',
26 'gcm_driver/gcm_activity.cc', 26 'gcm_driver/gcm_activity.cc',
27 'gcm_driver/gcm_activity.h', 27 'gcm_driver/gcm_activity.h',
28 'gcm_driver/gcm_app_handler.cc', 28 'gcm_driver/gcm_app_handler.cc',
29 'gcm_driver/gcm_app_handler.h', 29 'gcm_driver/gcm_app_handler.h',
30 'gcm_driver/gcm_backoff_policy.cc',
31 'gcm_driver/gcm_backoff_policy.h',
32 'gcm_driver/gcm_channel_status_request.cc',
33 'gcm_driver/gcm_channel_status_request.h',
30 'gcm_driver/gcm_client.cc', 34 'gcm_driver/gcm_client.cc',
31 'gcm_driver/gcm_client.h', 35 'gcm_driver/gcm_client.h',
32 'gcm_driver/gcm_client_factory.cc', 36 'gcm_driver/gcm_client_factory.cc',
33 'gcm_driver/gcm_client_factory.h', 37 'gcm_driver/gcm_client_factory.h',
34 'gcm_driver/gcm_client_impl.cc', 38 'gcm_driver/gcm_client_impl.cc',
35 'gcm_driver/gcm_client_impl.h', 39 'gcm_driver/gcm_client_impl.h',
36 'gcm_driver/gcm_connection_observer.cc', 40 'gcm_driver/gcm_connection_observer.cc',
37 'gcm_driver/gcm_connection_observer.h', 41 'gcm_driver/gcm_connection_observer.h',
38 'gcm_driver/gcm_driver.cc', 42 'gcm_driver/gcm_driver.cc',
39 'gcm_driver/gcm_driver.h', 43 'gcm_driver/gcm_driver.h',
40 'gcm_driver/gcm_driver_android.cc', 44 'gcm_driver/gcm_driver_android.cc',
41 'gcm_driver/gcm_driver_android.h', 45 'gcm_driver/gcm_driver_android.h',
42 'gcm_driver/gcm_driver_desktop.cc', 46 'gcm_driver/gcm_driver_desktop.cc',
43 'gcm_driver/gcm_driver_desktop.h', 47 'gcm_driver/gcm_driver_desktop.h',
44 'gcm_driver/gcm_stats_recorder_impl.cc', 48 'gcm_driver/gcm_stats_recorder_impl.cc',
45 'gcm_driver/gcm_stats_recorder_impl.h', 49 'gcm_driver/gcm_stats_recorder_impl.h',
50 'gcm_driver/proto/gcm_channel_status.proto',
46 'gcm_driver/system_encryptor.cc', 51 'gcm_driver/system_encryptor.cc',
47 'gcm_driver/system_encryptor.h', 52 'gcm_driver/system_encryptor.h',
48 ], 53 ],
54 'variables': {
55 'proto_in_dir': 'gcm_driver/proto',
56 'proto_out_dir': 'components/gcm_driver/proto',
57 },
58 'includes': [ '../build/protoc.gypi' ],
49 'conditions': [ 59 'conditions': [
50 ['OS == "android"', { 60 ['OS == "android"', {
51 'dependencies': [ 61 'dependencies': [
52 'gcm_driver_jni_headers', 62 'gcm_driver_jni_headers',
53 ], 63 ],
54 'dependencies!': [ 64 'dependencies!': [
55 '../google_apis/gcm/gcm.gyp:gcm', 65 '../google_apis/gcm/gcm.gyp:gcm',
56 ], 66 ],
57 'sources!': [ 67 'sources!': [
68 'gcm_driver/gcm_channel_status_request.cc',
69 'gcm_driver/gcm_channel_status_request.h',
58 'gcm_driver/gcm_client_factory.cc', 70 'gcm_driver/gcm_client_factory.cc',
59 'gcm_driver/gcm_client_factory.h', 71 'gcm_driver/gcm_client_factory.h',
60 'gcm_driver/gcm_client_impl.cc', 72 'gcm_driver/gcm_client_impl.cc',
61 'gcm_driver/gcm_client_impl.h', 73 'gcm_driver/gcm_client_impl.h',
62 'gcm_driver/gcm_driver_desktop.cc', 74 'gcm_driver/gcm_driver_desktop.cc',
63 'gcm_driver/gcm_driver_desktop.h', 75 'gcm_driver/gcm_driver_desktop.h',
64 'gcm_driver/gcm_stats_recorder_impl.cc', 76 'gcm_driver/gcm_stats_recorder_impl.cc',
65 'gcm_driver/gcm_stats_recorder_impl.h', 77 'gcm_driver/gcm_stats_recorder_impl.h',
78 'gcm_driver/proto/gcm_channel_status.proto',
66 ], 79 ],
67 }], 80 }],
68 ], 81 ],
69 }, 82 },
70 { 83 {
71 # GN version: //components/gcm_driver:test_support 84 # GN version: //components/gcm_driver:test_support
72 'target_name': 'gcm_driver_test_support', 85 'target_name': 'gcm_driver_test_support',
73 'type': 'static_library', 86 'type': 'static_library',
74 'dependencies': [ 87 'dependencies': [
75 'gcm_driver', 88 'gcm_driver',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 'variables': { 145 'variables': {
133 'jni_gen_package': 'components/gcm_driver', 146 'jni_gen_package': 'components/gcm_driver',
134 }, 147 },
135 'includes': [ '../build/jni_generator.gypi' ], 148 'includes': [ '../build/jni_generator.gypi' ],
136 }, 149 },
137 ], 150 ],
138 }, 151 },
139 ], 152 ],
140 ], 153 ],
141 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698