| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 static_library("impl") { | 9 static_library("impl") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "registration_manager_unittest.cc", | 131 "registration_manager_unittest.cc", |
| 132 "single_object_invalidation_set_unittest.cc", | 132 "single_object_invalidation_set_unittest.cc", |
| 133 "sync_invalidation_listener_unittest.cc", | 133 "sync_invalidation_listener_unittest.cc", |
| 134 "sync_system_resources_unittest.cc", | 134 "sync_system_resources_unittest.cc", |
| 135 "ticl_invalidation_service_unittest.cc", | 135 "ticl_invalidation_service_unittest.cc", |
| 136 "ticl_profile_settings_provider_unittest.cc", | 136 "ticl_profile_settings_provider_unittest.cc", |
| 137 "unacked_invalidation_set_unittest.cc", | 137 "unacked_invalidation_set_unittest.cc", |
| 138 ] | 138 ] |
| 139 deps += [ | 139 deps += [ |
| 140 "//components/gcm_driver:test_support", | 140 "//components/gcm_driver:test_support", |
| 141 "//components/pref_registry:test_support", | |
| 142 "//components/signin/core/browser:test_support", | 141 "//components/signin/core/browser:test_support", |
| 142 "//components/sync_preferences:test_support", |
| 143 "//google_apis:test_support", | 143 "//google_apis:test_support", |
| 144 "//net", | 144 "//net", |
| 145 ] | 145 ] |
| 146 } | 146 } |
| 147 } | 147 } |
| 148 | 148 |
| 149 static_library("test_support") { | 149 static_library("test_support") { |
| 150 testonly = true | 150 testonly = true |
| 151 sources = [ | 151 sources = [ |
| 152 "fake_invalidation_handler.cc", | 152 "fake_invalidation_handler.cc", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 "//base:base_java_test_support", | 250 "//base:base_java_test_support", |
| 251 ] | 251 ] |
| 252 } | 252 } |
| 253 generate_jni("jni_headers") { | 253 generate_jni("jni_headers") { |
| 254 sources = [ | 254 sources = [ |
| 255 "android/java/src/org/chromium/components/invalidation/InvalidationService
.java", | 255 "android/java/src/org/chromium/components/invalidation/InvalidationService
.java", |
| 256 ] | 256 ] |
| 257 jni_package = "components/invalidation" | 257 jni_package = "components/invalidation" |
| 258 } | 258 } |
| 259 } | 259 } |
| OLD | NEW |