| 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/invalidation | 8 # GN version: //components/invalidation |
| 9 'target_name': 'invalidation', | 9 'target_name': 'invalidation', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../google_apis/google_apis.gyp:google_apis', | 13 '../google_apis/google_apis.gyp:google_apis', |
| 14 '../jingle/jingle.gyp:notifier', | 14 '../jingle/jingle.gyp:notifier', |
| 15 '../sync/sync.gyp:sync', | |
| 16 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 15 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
| 17 # TODO(akalin): Remove this (http://crbug.com/133352). | 16 # TODO(akalin): Remove this (http://crbug.com/133352). |
| 18 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', | 17 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', |
| 19 'gcm_driver', | 18 'gcm_driver', |
| 20 'keyed_service_core', | 19 'keyed_service_core', |
| 21 'pref_registry', | 20 'pref_registry', |
| 22 'signin_core_browser', | 21 'signin_core_browser', |
| 23 ], | 22 ], |
| 24 'export_dependent_settings': [ | 23 'export_dependent_settings': [ |
| 25 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 24 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 { | 107 { |
| 109 # GN version: //components/invalidation:test_support | 108 # GN version: //components/invalidation:test_support |
| 110 'target_name': 'invalidation_test_support', | 109 'target_name': 'invalidation_test_support', |
| 111 'type': 'static_library', | 110 'type': 'static_library', |
| 112 'dependencies': [ | 111 'dependencies': [ |
| 113 '../base/base.gyp:base', | 112 '../base/base.gyp:base', |
| 114 '../google_apis/google_apis.gyp:google_apis', | 113 '../google_apis/google_apis.gyp:google_apis', |
| 115 '../jingle/jingle.gyp:notifier', | 114 '../jingle/jingle.gyp:notifier', |
| 116 '../jingle/jingle.gyp:notifier_test_util', | 115 '../jingle/jingle.gyp:notifier_test_util', |
| 117 '../net/net.gyp:net', | 116 '../net/net.gyp:net', |
| 118 '../sync/sync.gyp:sync', | |
| 119 '../testing/gmock.gyp:gmock', | 117 '../testing/gmock.gyp:gmock', |
| 120 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 118 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
| 119 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', |
| 121 'gcm_driver_test_support', | 120 'gcm_driver_test_support', |
| 122 'keyed_service_core', | 121 'keyed_service_core', |
| 123 ], | 122 ], |
| 124 'include_dirs': [ | 123 'include_dirs': [ |
| 125 '..', | 124 '..', |
| 126 ], | 125 ], |
| 127 'sources': [ | 126 'sources': [ |
| 128 # Note: sources list duplicated in GN build. | 127 # Note: sources list duplicated in GN build. |
| 129 'invalidation/fake_invalidation_handler.cc', | 128 'invalidation/fake_invalidation_handler.cc', |
| 130 'invalidation/fake_invalidation_handler.h', | 129 'invalidation/fake_invalidation_handler.h', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 148 'sources': [ | 147 'sources': [ |
| 149 # Note: sources list duplicated in GN build. | 148 # Note: sources list duplicated in GN build. |
| 150 'invalidation/p2p_invalidation_service.cc', | 149 'invalidation/p2p_invalidation_service.cc', |
| 151 'invalidation/p2p_invalidation_service.h', | 150 'invalidation/p2p_invalidation_service.h', |
| 152 ], | 151 ], |
| 153 }], | 152 }], |
| 154 ], | 153 ], |
| 155 }, | 154 }, |
| 156 ], | 155 ], |
| 157 } | 156 } |
| OLD | NEW |