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

Side by Side Diff: components/gcm_driver.gypi

Issue 635093002: [GCM] Updating GCM Status Syncer to the new Experiment Status pb (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing CR comments Created 6 years, 2 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
« no previous file with comments | « no previous file | components/gcm_driver/BUILD.gn » ('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 # GN version: //components/gcm_driver 8 # GN version: //components/gcm_driver
9 'target_name': 'gcm_driver', 9 'target_name': 'gcm_driver',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 'os_crypt', 12 'os_crypt',
13 '../base/base.gyp:base', 13 '../base/base.gyp:base',
14 '../google_apis/gcm/gcm.gyp:gcm', 14 '../google_apis/gcm/gcm.gyp:gcm',
15 '../net/net.gyp:net', 15 '../net/net.gyp:net',
16 '../sync/sync.gyp:sync_proto',
16 ], 17 ],
17 'include_dirs': [ 18 'include_dirs': [
18 '..', 19 '..',
19 ], 20 ],
20 'sources': [ 21 'sources': [
21 # Note: file list duplicated in GN build. 22 # Note: file list duplicated in GN build.
22 'gcm_driver/android/component_jni_registrar.cc', 23 'gcm_driver/android/component_jni_registrar.cc',
23 'gcm_driver/android/component_jni_registrar.h', 24 'gcm_driver/android/component_jni_registrar.h',
24 'gcm_driver/default_gcm_app_handler.cc', 25 'gcm_driver/default_gcm_app_handler.cc',
25 'gcm_driver/default_gcm_app_handler.h', 26 'gcm_driver/default_gcm_app_handler.h',
(...skipping 20 matching lines...) Expand all
46 'gcm_driver/gcm_delayed_task_controller.cc', 47 'gcm_driver/gcm_delayed_task_controller.cc',
47 'gcm_driver/gcm_delayed_task_controller.h', 48 'gcm_driver/gcm_delayed_task_controller.h',
48 'gcm_driver/gcm_driver.cc', 49 'gcm_driver/gcm_driver.cc',
49 'gcm_driver/gcm_driver.h', 50 'gcm_driver/gcm_driver.h',
50 'gcm_driver/gcm_driver_android.cc', 51 'gcm_driver/gcm_driver_android.cc',
51 'gcm_driver/gcm_driver_android.h', 52 'gcm_driver/gcm_driver_android.h',
52 'gcm_driver/gcm_driver_desktop.cc', 53 'gcm_driver/gcm_driver_desktop.cc',
53 'gcm_driver/gcm_driver_desktop.h', 54 'gcm_driver/gcm_driver_desktop.h',
54 'gcm_driver/gcm_stats_recorder_impl.cc', 55 'gcm_driver/gcm_stats_recorder_impl.cc',
55 'gcm_driver/gcm_stats_recorder_impl.h', 56 'gcm_driver/gcm_stats_recorder_impl.h',
56 'gcm_driver/proto/gcm_channel_status.proto',
57 'gcm_driver/system_encryptor.cc', 57 'gcm_driver/system_encryptor.cc',
58 'gcm_driver/system_encryptor.h', 58 'gcm_driver/system_encryptor.h',
59 ], 59 ],
60 'variables': { 60 'variables': {
61 'proto_in_dir': 'gcm_driver/proto', 61 'proto_in_dir': 'gcm_driver/proto',
62 'proto_out_dir': 'components/gcm_driver/proto', 62 'proto_out_dir': 'components/gcm_driver/proto',
63 }, 63 },
64 'includes': [ '../build/protoc.gypi' ], 64 'includes': [ '../build/protoc.gypi' ],
65 'conditions': [ 65 'conditions': [
66 ['OS == "android"', { 66 ['OS == "android"', {
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 'variables': { 158 'variables': {
159 'jni_gen_package': 'components/gcm_driver', 159 'jni_gen_package': 'components/gcm_driver',
160 }, 160 },
161 'includes': [ '../build/jni_generator.gypi' ], 161 'includes': [ '../build/jni_generator.gypi' ],
162 }, 162 },
163 ], 163 ],
164 }, 164 },
165 ], 165 ],
166 ], 166 ],
167 } 167 }
OLDNEW
« no previous file with comments | « no previous file | components/gcm_driver/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698