OLD | NEW |
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 'gcm_driver/gcm_connection_observer.cc', | 68 'gcm_driver/gcm_connection_observer.cc', |
69 'gcm_driver/gcm_connection_observer.h', | 69 'gcm_driver/gcm_connection_observer.h', |
70 'gcm_driver/gcm_delayed_task_controller.cc', | 70 'gcm_driver/gcm_delayed_task_controller.cc', |
71 'gcm_driver/gcm_delayed_task_controller.h', | 71 'gcm_driver/gcm_delayed_task_controller.h', |
72 'gcm_driver/gcm_desktop_utils.cc', | 72 'gcm_driver/gcm_desktop_utils.cc', |
73 'gcm_driver/gcm_desktop_utils.h', | 73 'gcm_driver/gcm_desktop_utils.h', |
74 'gcm_driver/gcm_driver.cc', | 74 'gcm_driver/gcm_driver.cc', |
75 'gcm_driver/gcm_driver.h', | 75 'gcm_driver/gcm_driver.h', |
76 'gcm_driver/gcm_driver_android.cc', | 76 'gcm_driver/gcm_driver_android.cc', |
77 'gcm_driver/gcm_driver_android.h', | 77 'gcm_driver/gcm_driver_android.h', |
| 78 'gcm_driver/gcm_driver_constants.cc', |
| 79 'gcm_driver/gcm_driver_constants.h', |
78 'gcm_driver/gcm_driver_desktop.cc', | 80 'gcm_driver/gcm_driver_desktop.cc', |
79 'gcm_driver/gcm_driver_desktop.h', | 81 'gcm_driver/gcm_driver_desktop.h', |
80 'gcm_driver/gcm_internals_constants.cc', | 82 'gcm_driver/gcm_internals_constants.cc', |
81 'gcm_driver/gcm_internals_constants.h', | 83 'gcm_driver/gcm_internals_constants.h', |
| 84 'gcm_driver/gcm_profile_service.cc', |
| 85 'gcm_driver/gcm_profile_service.h', |
82 'gcm_driver/gcm_stats_recorder_impl.cc', | 86 'gcm_driver/gcm_stats_recorder_impl.cc', |
83 'gcm_driver/gcm_stats_recorder_impl.h', | 87 'gcm_driver/gcm_stats_recorder_impl.h', |
84 'gcm_driver/registration_info.cc', | 88 'gcm_driver/registration_info.cc', |
85 'gcm_driver/registration_info.h', | 89 'gcm_driver/registration_info.h', |
86 'gcm_driver/system_encryptor.cc', | 90 'gcm_driver/system_encryptor.cc', |
87 'gcm_driver/system_encryptor.h', | 91 'gcm_driver/system_encryptor.h', |
88 ], | 92 ], |
89 'conditions': [ | 93 'conditions': [ |
90 ['OS == "android"', { | 94 ['OS == "android"', { |
91 'dependencies': [ | 95 'dependencies': [ |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 'variables': { | 291 'variables': { |
288 'jni_gen_package': 'components/gcm_driver', | 292 'jni_gen_package': 'components/gcm_driver', |
289 }, | 293 }, |
290 'includes': [ '../build/jni_generator.gypi' ], | 294 'includes': [ '../build/jni_generator.gypi' ], |
291 }, | 295 }, |
292 ], | 296 ], |
293 }, | 297 }, |
294 ], | 298 ], |
295 ], | 299 ], |
296 } | 300 } |
OLD | NEW |