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

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 most of peter's concerns Created 4 years, 5 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 16 matching lines...) Expand all
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 '../google_apis/gcm/gcm.gyp:gcm', 34 '../google_apis/gcm/gcm.gyp:gcm',
35 '../net/net.gyp:net', 35 '../net/net.gyp:net',
36 '../sync/sync.gyp:sync_proto', 36 '../sync/sync.gyp:sync_proto',
37 '../third_party/re2/re2.gyp:re2',
Peter Beverloo 2016/07/22 12:17:03 drop
johnme 2016/07/26 17:11:55 Oops done.
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 'gcm_driver/gcm_internals_constants.cc', 83 'gcm_driver/gcm_internals_constants.cc',
83 'gcm_driver/gcm_internals_constants.h', 84 'gcm_driver/gcm_internals_constants.h',
84 'gcm_driver/gcm_internals_helper.cc', 85 'gcm_driver/gcm_internals_helper.cc',
85 'gcm_driver/gcm_internals_helper.h', 86 'gcm_driver/gcm_internals_helper.h',
86 'gcm_driver/gcm_profile_service.cc', 87 'gcm_driver/gcm_profile_service.cc',
87 'gcm_driver/gcm_profile_service.h', 88 'gcm_driver/gcm_profile_service.h',
88 'gcm_driver/gcm_stats_recorder_android.cc', 89 'gcm_driver/gcm_stats_recorder_android.cc',
89 'gcm_driver/gcm_stats_recorder_android.h', 90 'gcm_driver/gcm_stats_recorder_android.h',
90 'gcm_driver/gcm_stats_recorder_impl.cc', 91 'gcm_driver/gcm_stats_recorder_impl.cc',
91 'gcm_driver/gcm_stats_recorder_impl.h', 92 'gcm_driver/gcm_stats_recorder_impl.h',
93 'gcm_driver/pref_names.cc',
94 'gcm_driver/pref_names.h',
92 'gcm_driver/registration_info.cc', 95 'gcm_driver/registration_info.cc',
93 'gcm_driver/registration_info.h', 96 'gcm_driver/registration_info.h',
94 'gcm_driver/system_encryptor.cc', 97 'gcm_driver/system_encryptor.cc',
95 'gcm_driver/system_encryptor.h', 98 'gcm_driver/system_encryptor.h',
96 ], 99 ],
97 'conditions': [ 100 'conditions': [
98 ['OS == "android"', { 101 ['OS == "android"', {
99 'dependencies': [ 102 'dependencies': [
100 'gcm_driver_jni_headers', 103 'gcm_driver_jni_headers',
101 ], 104 ],
(...skipping 10 matching lines...) Expand all
112 'gcm_driver/gcm_client_factory.cc', 115 'gcm_driver/gcm_client_factory.cc',
113 'gcm_driver/gcm_client_factory.h', 116 'gcm_driver/gcm_client_factory.h',
114 'gcm_driver/gcm_client_impl.cc', 117 'gcm_driver/gcm_client_impl.cc',
115 'gcm_driver/gcm_client_impl.h', 118 'gcm_driver/gcm_client_impl.h',
116 'gcm_driver/gcm_desktop_utils.cc', 119 'gcm_driver/gcm_desktop_utils.cc',
117 'gcm_driver/gcm_desktop_utils.h', 120 'gcm_driver/gcm_desktop_utils.h',
118 'gcm_driver/gcm_driver_desktop.cc', 121 'gcm_driver/gcm_driver_desktop.cc',
119 'gcm_driver/gcm_driver_desktop.h', 122 'gcm_driver/gcm_driver_desktop.h',
120 'gcm_driver/gcm_stats_recorder_impl.cc', 123 'gcm_driver/gcm_stats_recorder_impl.cc',
121 'gcm_driver/gcm_stats_recorder_impl.h', 124 'gcm_driver/gcm_stats_recorder_impl.h',
125 'gcm_driver/pref_names.cc',
126 'gcm_driver/pref_names.h',
122 ], 127 ],
123 }], 128 }],
124 ['chromeos == 1', { 129 ['chromeos == 1', {
125 'dependencies': [ 130 'dependencies': [
126 'timers', 131 'timers',
127 ], 132 ],
128 }], 133 }],
129 ], 134 ],
130 }, 135 },
131 { 136 {
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 'variables': { 368 'variables': {
364 'jni_gen_package': 'components/gcm_driver/instance_id', 369 'jni_gen_package': 'components/gcm_driver/instance_id',
365 }, 370 },
366 'includes': [ '../build/jni_generator.gypi' ], 371 'includes': [ '../build/jni_generator.gypi' ],
367 }, 372 },
368 ], 373 ],
369 }, 374 },
370 ], 375 ],
371 ], 376 ],
372 } 377 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698