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

Side by Side Diff: components/gcm_driver.gypi

Issue 314293006: Implement GCMDriver.java using MultiplexingGcmListener (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix FindBugs 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
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': [
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 }, 100 },
101 ], 101 ],
102 'conditions': [ 102 'conditions': [
103 ['OS == "android"', { 103 ['OS == "android"', {
104 'targets': [ 104 'targets': [
105 { 105 {
106 'target_name': 'gcm_driver_java', 106 'target_name': 'gcm_driver_java',
107 'type': 'none', 107 'type': 'none',
108 'dependencies': [ 108 'dependencies': [
109 '../base/base.gyp:base', 109 '../base/base.gyp:base',
110 '../sync/sync.gyp:sync_java',
110 ], 111 ],
111 'variables': { 112 'variables': {
112 'java_in_dir': 'gcm_driver/android/java', 113 'java_in_dir': 'gcm_driver/android/java',
113 }, 114 },
114 'includes': [ '../build/java.gypi' ], 115 'includes': [ '../build/java.gypi' ],
115 }, 116 },
116 { 117 {
117 'target_name': 'gcm_driver_jni_headers', 118 'target_name': 'gcm_driver_jni_headers',
118 'type': 'none', 119 'type': 'none',
119 'sources': [ 120 'sources': [
120 'gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMD river.java', 121 'gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMD river.java',
121 ], 122 ],
122 'variables': { 123 'variables': {
123 'jni_gen_package': 'components/gcm_driver', 124 'jni_gen_package': 'components/gcm_driver',
124 }, 125 },
125 'includes': [ '../build/jni_generator.gypi' ], 126 'includes': [ '../build/jni_generator.gypi' ],
126 }, 127 },
127 ], 128 ],
128 }, 129 },
129 ], 130 ],
130 ], 131 ],
131 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698