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

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: Fix iOS compile 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/sync.gyp:sync_proto',
34 '../google_apis/gcm/gcm.gyp:gcm', 35 '../google_apis/gcm/gcm.gyp:gcm',
35 '../net/net.gyp:net', 36 '../net/net.gyp:net',
36 '../components/sync.gyp:sync_proto',
37 '../url/url.gyp:url_lib', 37 '../url/url.gyp:url_lib',
38 ], 38 ],
39 'include_dirs': [ 39 'include_dirs': [
40 '..', 40 '..',
41 ], 41 ],
42 'sources': [ 42 'sources': [
43 # Note: file list duplicated in GN build. 43 # Note: file list duplicated in GN build.
44 'gcm_driver/android/component_jni_registrar.cc', 44 'gcm_driver/android/component_jni_registrar.cc',
45 'gcm_driver/android/component_jni_registrar.h', 45 'gcm_driver/android/component_jni_registrar.h',
46 'gcm_driver/default_gcm_app_handler.cc', 46 'gcm_driver/default_gcm_app_handler.cc',
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 'variables': { 363 'variables': {
364 'jni_gen_package': 'components/gcm_driver/instance_id', 364 'jni_gen_package': 'components/gcm_driver/instance_id',
365 }, 365 },
366 'includes': [ '../build/jni_generator.gypi' ], 366 'includes': [ '../build/jni_generator.gypi' ],
367 }, 367 },
368 ], 368 ],
369 }, 369 },
370 ], 370 ],
371 ], 371 ],
372 } 372 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698