| 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 12 matching lines...) Expand all Loading... |
| 23 }, | 23 }, |
| 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 '../base/base.gyp:base', | 32 '../base/base.gyp:base', |
| 33 '../components/components.gyp:crx_file', |
| 34 '../components/sync.gyp:sync', |
| 33 '../google_apis/gcm/gcm.gyp:gcm', | 35 '../google_apis/gcm/gcm.gyp:gcm', |
| 34 '../net/net.gyp:net', | 36 '../net/net.gyp:net', |
| 35 '../components/sync.gyp:sync', | |
| 36 '../url/url.gyp:url_lib', | 37 '../url/url.gyp:url_lib', |
| 37 ], | 38 ], |
| 38 'include_dirs': [ | 39 'include_dirs': [ |
| 39 '..', | 40 '..', |
| 40 ], | 41 ], |
| 41 'sources': [ | 42 'sources': [ |
| 42 # Note: file list duplicated in GN build. | 43 # Note: file list duplicated in GN build. |
| 43 'gcm_driver/android/component_jni_registrar.cc', | 44 'gcm_driver/android/component_jni_registrar.cc', |
| 44 'gcm_driver/android/component_jni_registrar.h', | 45 'gcm_driver/android/component_jni_registrar.h', |
| 45 'gcm_driver/default_gcm_app_handler.cc', | 46 'gcm_driver/default_gcm_app_handler.cc', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 'gcm_driver/registration_info.h', | 93 'gcm_driver/registration_info.h', |
| 93 'gcm_driver/system_encryptor.cc', | 94 'gcm_driver/system_encryptor.cc', |
| 94 'gcm_driver/system_encryptor.h', | 95 'gcm_driver/system_encryptor.h', |
| 95 ], | 96 ], |
| 96 'conditions': [ | 97 'conditions': [ |
| 97 ['OS == "android"', { | 98 ['OS == "android"', { |
| 98 'dependencies': [ | 99 'dependencies': [ |
| 99 'gcm_driver_jni_headers', | 100 'gcm_driver_jni_headers', |
| 100 ], | 101 ], |
| 101 'dependencies!': [ | 102 'dependencies!': [ |
| 103 '../components/components.gyp:crx_file', |
| 102 '../google_apis/gcm/gcm.gyp:gcm', | 104 '../google_apis/gcm/gcm.gyp:gcm', |
| 103 ], | 105 ], |
| 104 'sources!': [ | 106 'sources!': [ |
| 105 'gcm_driver/gcm_account_mapper.cc', | 107 'gcm_driver/gcm_account_mapper.cc', |
| 106 'gcm_driver/gcm_account_mapper.h', | 108 'gcm_driver/gcm_account_mapper.h', |
| 107 'gcm_driver/gcm_channel_status_request.cc', | 109 'gcm_driver/gcm_channel_status_request.cc', |
| 108 'gcm_driver/gcm_channel_status_request.h', | 110 'gcm_driver/gcm_channel_status_request.h', |
| 109 'gcm_driver/gcm_channel_status_syncer.cc', | 111 'gcm_driver/gcm_channel_status_syncer.cc', |
| 110 'gcm_driver/gcm_channel_status_syncer.h', | 112 'gcm_driver/gcm_channel_status_syncer.h', |
| 111 'gcm_driver/gcm_client_factory.cc', | 113 'gcm_driver/gcm_client_factory.cc', |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 'variables': { | 364 'variables': { |
| 363 'jni_gen_package': 'components/gcm_driver/instance_id', | 365 'jni_gen_package': 'components/gcm_driver/instance_id', |
| 364 }, | 366 }, |
| 365 'includes': [ '../build/jni_generator.gypi' ], | 367 'includes': [ '../build/jni_generator.gypi' ], |
| 366 }, | 368 }, |
| 367 ], | 369 ], |
| 368 }, | 370 }, |
| 369 ], | 371 ], |
| 370 ], | 372 ], |
| 371 } | 373 } |
| OLD | NEW |