| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 config("cacheinvalidation_config") { | 7 config("cacheinvalidation_config") { |
| 8 include_dirs = [ | 8 include_dirs = [ |
| 9 "overrides", | 9 "overrides", |
| 10 "src", | 10 "src", |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "//base", | 110 "//base", |
| 111 "//base/test:run_all_unittests", | 111 "//base/test:run_all_unittests", |
| 112 "//testing/gmock", | 112 "//testing/gmock", |
| 113 "//testing/gtest", | 113 "//testing/gtest", |
| 114 ] | 114 ] |
| 115 } | 115 } |
| 116 | 116 |
| 117 if (is_android) { | 117 if (is_android) { |
| 118 import("//build/config/android/rules.gni") | 118 import("//build/config/android/rules.gni") |
| 119 | 119 |
| 120 # GYP: //third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation
_proto_java | |
| 121 proto_java_library("cacheinvalidation_proto_java") { | 120 proto_java_library("cacheinvalidation_proto_java") { |
| 122 proto_path = "src/proto" | 121 proto_path = "src/proto" |
| 123 sources = [ | 122 sources = [ |
| 124 "$proto_path/android_channel.proto", | 123 "$proto_path/android_channel.proto", |
| 125 "$proto_path/android_listener.proto", | 124 "$proto_path/android_listener.proto", |
| 126 "$proto_path/android_service.proto", | 125 "$proto_path/android_service.proto", |
| 127 "$proto_path/channel_common.proto", | 126 "$proto_path/channel_common.proto", |
| 128 "$proto_path/client.proto", | 127 "$proto_path/client.proto", |
| 129 "$proto_path/client_protocol.proto", | 128 "$proto_path/client_protocol.proto", |
| 130 "$proto_path/java_client.proto", | 129 "$proto_path/java_client.proto", |
| 131 "$proto_path/types.proto", | 130 "$proto_path/types.proto", |
| 132 ] | 131 ] |
| 133 } | 132 } |
| 134 | 133 |
| 135 # GYP: //third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation
_javalib | |
| 136 android_library("cacheinvalidation_javalib") { | 134 android_library("cacheinvalidation_javalib") { |
| 137 chromium_code = false | 135 chromium_code = false |
| 138 emma_never_instrument = true | 136 emma_never_instrument = true |
| 139 deps = [ | 137 deps = [ |
| 140 ":cacheinvalidation_proto_java", | 138 ":cacheinvalidation_proto_java", |
| 141 "//third_party/android_protobuf:protobuf_nano_javalib", | 139 "//third_party/android_protobuf:protobuf_nano_javalib", |
| 142 "//third_party/android_tools:android_gcm_java", | 140 "//third_party/android_tools:android_gcm_java", |
| 143 google_play_services_library, | 141 google_play_services_library, |
| 144 ] | 142 ] |
| 145 | 143 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 "src/java/com/google/ipc/invalidation/util/NamedRunnable.java", | 232 "src/java/com/google/ipc/invalidation/util/NamedRunnable.java", |
| 235 "src/java/com/google/ipc/invalidation/util/Preconditions.java", | 233 "src/java/com/google/ipc/invalidation/util/Preconditions.java", |
| 236 "src/java/com/google/ipc/invalidation/util/ProtoWrapper.java", | 234 "src/java/com/google/ipc/invalidation/util/ProtoWrapper.java", |
| 237 "src/java/com/google/ipc/invalidation/util/Smearer.java", | 235 "src/java/com/google/ipc/invalidation/util/Smearer.java", |
| 238 "src/java/com/google/ipc/invalidation/util/TextBuilder.java", | 236 "src/java/com/google/ipc/invalidation/util/TextBuilder.java", |
| 239 "src/java/com/google/ipc/invalidation/util/TypedUtil.java", | 237 "src/java/com/google/ipc/invalidation/util/TypedUtil.java", |
| 240 "src/java/com/google/ipc/invalidation/util/UtilFormatter.java", | 238 "src/java/com/google/ipc/invalidation/util/UtilFormatter.java", |
| 241 ] | 239 ] |
| 242 } | 240 } |
| 243 } | 241 } |
| OLD | NEW |