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

Side by Side Diff: components/gcm_driver.gypi

Issue 320993003: [GCM] Add app handler support for connection events (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | components/gcm_driver/default_gcm_app_handler.h » ('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 'target_name': 'gcm_driver', 8 'target_name': 'gcm_driver',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 'os_crypt', 11 'os_crypt',
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../google_apis/gcm/gcm.gyp:gcm', 13 '../google_apis/gcm/gcm.gyp:gcm',
14 '../net/net.gyp:net', 14 '../net/net.gyp:net',
15 ], 15 ],
16 'include_dirs': [ 16 'include_dirs': [
17 '..', 17 '..',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'gcm_driver/android/component_jni_registrar.cc', 20 'gcm_driver/android/component_jni_registrar.cc',
21 'gcm_driver/android/component_jni_registrar.h', 21 'gcm_driver/android/component_jni_registrar.h',
22 'gcm_driver/default_gcm_app_handler.cc', 22 'gcm_driver/default_gcm_app_handler.cc',
23 'gcm_driver/default_gcm_app_handler.h', 23 'gcm_driver/default_gcm_app_handler.h',
24 'gcm_driver/gcm_activity.cc', 24 'gcm_driver/gcm_activity.cc',
25 'gcm_driver/gcm_activity.h', 25 'gcm_driver/gcm_activity.h',
26 'gcm_driver/gcm_app_handler.cc',
26 'gcm_driver/gcm_app_handler.h', 27 'gcm_driver/gcm_app_handler.h',
27 'gcm_driver/gcm_client.cc', 28 'gcm_driver/gcm_client.cc',
28 'gcm_driver/gcm_client.h', 29 'gcm_driver/gcm_client.h',
29 'gcm_driver/gcm_client_factory.cc', 30 'gcm_driver/gcm_client_factory.cc',
30 'gcm_driver/gcm_client_factory.h', 31 'gcm_driver/gcm_client_factory.h',
31 'gcm_driver/gcm_client_impl.cc', 32 'gcm_driver/gcm_client_impl.cc',
32 'gcm_driver/gcm_client_impl.h', 33 'gcm_driver/gcm_client_impl.h',
33 'gcm_driver/gcm_driver.cc', 34 'gcm_driver/gcm_driver.cc',
34 'gcm_driver/gcm_driver.h', 35 'gcm_driver/gcm_driver.h',
35 'gcm_driver/gcm_driver_android.cc', 36 'gcm_driver/gcm_driver_android.cc',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 '../google_apis/gcm/gcm.gyp:gcm_test_support', 91 '../google_apis/gcm/gcm.gyp:gcm_test_support',
91 ], 92 ],
92 'sources!': [ 93 'sources!': [
93 'gcm_driver/fake_gcm_client.cc', 94 'gcm_driver/fake_gcm_client.cc',
94 'gcm_driver/fake_gcm_client.h', 95 'gcm_driver/fake_gcm_client.h',
95 'gcm_driver/fake_gcm_client_factory.cc', 96 'gcm_driver/fake_gcm_client_factory.cc',
96 'gcm_driver/fake_gcm_client_factory.h', 97 'gcm_driver/fake_gcm_client_factory.h',
97 ], 98 ],
98 }], 99 }],
99 ], 100 ],
100 }, 101 },
101 ], 102 ],
102 'conditions': [ 103 'conditions': [
103 ['OS == "android"', { 104 ['OS == "android"', {
104 'targets': [ 105 'targets': [
105 { 106 {
106 'target_name': 'gcm_driver_java', 107 'target_name': 'gcm_driver_java',
107 'type': 'none', 108 'type': 'none',
108 'dependencies': [ 109 'dependencies': [
109 '../base/base.gyp:base', 110 '../base/base.gyp:base',
110 # TODO(johnme): Fix the layering violation of depending on content/ 111 # TODO(johnme): Fix the layering violation of depending on content/
(...skipping 14 matching lines...) Expand all
125 'variables': { 126 'variables': {
126 'jni_gen_package': 'components/gcm_driver', 127 'jni_gen_package': 'components/gcm_driver',
127 }, 128 },
128 'includes': [ '../build/jni_generator.gypi' ], 129 'includes': [ '../build/jni_generator.gypi' ],
129 }, 130 },
130 ], 131 ],
131 }, 132 },
132 ], 133 ],
133 ], 134 ],
134 } 135 }
OLDNEW
« no previous file with comments | « no previous file | components/gcm_driver/default_gcm_app_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698