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

Side by Side Diff: components/gcm_driver.gypi

Issue 2111973002: Add support for GCM subtypes to desktop Instance ID implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iid9push
Patch Set: Address jianli's review comments Created 4 years, 4 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/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 13 matching lines...) Expand all
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 'sync_driver',
33 '../base/base.gyp:base', 33 '../base/base.gyp:base',
34 '../components/components.gyp:crx_file',
35 '../components/sync.gyp:sync_proto',
34 '../google_apis/gcm/gcm.gyp:gcm', 36 '../google_apis/gcm/gcm.gyp:gcm',
35 '../net/net.gyp:net', 37 '../net/net.gyp:net',
36 '../components/sync.gyp:sync_proto',
37 '../url/url.gyp:url_lib', 38 '../url/url.gyp:url_lib',
38 ], 39 ],
39 'include_dirs': [ 40 'include_dirs': [
40 '..', 41 '..',
41 ], 42 ],
42 'sources': [ 43 'sources': [
43 # Note: file list duplicated in GN build. 44 # Note: file list duplicated in GN build.
44 'gcm_driver/android/component_jni_registrar.cc', 45 'gcm_driver/android/component_jni_registrar.cc',
45 'gcm_driver/android/component_jni_registrar.h', 46 'gcm_driver/android/component_jni_registrar.h',
46 'gcm_driver/default_gcm_app_handler.cc', 47 'gcm_driver/default_gcm_app_handler.cc',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'gcm_driver/registration_info.h', 94 'gcm_driver/registration_info.h',
94 'gcm_driver/system_encryptor.cc', 95 'gcm_driver/system_encryptor.cc',
95 'gcm_driver/system_encryptor.h', 96 'gcm_driver/system_encryptor.h',
96 ], 97 ],
97 'conditions': [ 98 'conditions': [
98 ['OS == "android"', { 99 ['OS == "android"', {
99 'dependencies': [ 100 'dependencies': [
100 'gcm_driver_jni_headers', 101 'gcm_driver_jni_headers',
101 ], 102 ],
102 'dependencies!': [ 103 'dependencies!': [
104 '../components/components.gyp:crx_file',
103 '../google_apis/gcm/gcm.gyp:gcm', 105 '../google_apis/gcm/gcm.gyp:gcm',
104 ], 106 ],
105 'sources!': [ 107 'sources!': [
106 'gcm_driver/gcm_account_mapper.cc', 108 'gcm_driver/gcm_account_mapper.cc',
107 'gcm_driver/gcm_account_mapper.h', 109 'gcm_driver/gcm_account_mapper.h',
108 'gcm_driver/gcm_channel_status_request.cc', 110 'gcm_driver/gcm_channel_status_request.cc',
109 'gcm_driver/gcm_channel_status_request.h', 111 'gcm_driver/gcm_channel_status_request.h',
110 'gcm_driver/gcm_channel_status_syncer.cc', 112 'gcm_driver/gcm_channel_status_syncer.cc',
111 'gcm_driver/gcm_channel_status_syncer.h', 113 'gcm_driver/gcm_channel_status_syncer.h',
112 'gcm_driver/gcm_client_factory.cc', 114 'gcm_driver/gcm_client_factory.cc',
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 'variables': { 365 'variables': {
364 'jni_gen_package': 'components/gcm_driver/instance_id', 366 'jni_gen_package': 'components/gcm_driver/instance_id',
365 }, 367 },
366 'includes': [ '../build/jni_generator.gypi' ], 368 'includes': [ '../build/jni_generator.gypi' ],
367 }, 369 },
368 ], 370 ],
369 }, 371 },
370 ], 372 ],
371 ], 373 ],
372 } 374 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698