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 | 8 # GN version: //components/gcm_driver |
9 'target_name': 'gcm_driver', | 9 'target_name': 'gcm_driver', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 'gcm_driver/gcm_delayed_task_controller.cc', | 47 'gcm_driver/gcm_delayed_task_controller.cc', |
48 'gcm_driver/gcm_delayed_task_controller.h', | 48 'gcm_driver/gcm_delayed_task_controller.h', |
49 'gcm_driver/gcm_driver.cc', | 49 'gcm_driver/gcm_driver.cc', |
50 'gcm_driver/gcm_driver.h', | 50 'gcm_driver/gcm_driver.h', |
51 'gcm_driver/gcm_driver_android.cc', | 51 'gcm_driver/gcm_driver_android.cc', |
52 'gcm_driver/gcm_driver_android.h', | 52 'gcm_driver/gcm_driver_android.h', |
53 'gcm_driver/gcm_driver_desktop.cc', | 53 'gcm_driver/gcm_driver_desktop.cc', |
54 'gcm_driver/gcm_driver_desktop.h', | 54 'gcm_driver/gcm_driver_desktop.h', |
55 'gcm_driver/gcm_stats_recorder_impl.cc', | 55 'gcm_driver/gcm_stats_recorder_impl.cc', |
56 'gcm_driver/gcm_stats_recorder_impl.h', | 56 'gcm_driver/gcm_stats_recorder_impl.h', |
| 57 'gcm_driver/registration_info.cc', |
| 58 'gcm_driver/registration_info.h', |
57 'gcm_driver/system_encryptor.cc', | 59 'gcm_driver/system_encryptor.cc', |
58 'gcm_driver/system_encryptor.h', | 60 'gcm_driver/system_encryptor.h', |
59 ], | 61 ], |
60 'variables': { | 62 'variables': { |
61 'proto_in_dir': 'gcm_driver/proto', | 63 'proto_in_dir': 'gcm_driver/proto', |
62 'proto_out_dir': 'components/gcm_driver/proto', | 64 'proto_out_dir': 'components/gcm_driver/proto', |
63 }, | 65 }, |
64 'includes': [ '../build/protoc.gypi' ], | 66 'includes': [ '../build/protoc.gypi' ], |
65 'conditions': [ | 67 'conditions': [ |
66 ['OS == "android"', { | 68 ['OS == "android"', { |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 'variables': { | 211 'variables': { |
210 'jni_gen_package': 'components/gcm_driver', | 212 'jni_gen_package': 'components/gcm_driver', |
211 }, | 213 }, |
212 'includes': [ '../build/jni_generator.gypi' ], | 214 'includes': [ '../build/jni_generator.gypi' ], |
213 }, | 215 }, |
214 ], | 216 ], |
215 }, | 217 }, |
216 ], | 218 ], |
217 ], | 219 ], |
218 } | 220 } |
OLD | NEW |