Chromium Code Reviews| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 107 deps = [ | 107 deps = [ |
| 108 ":cacheinvalidation", | 108 ":cacheinvalidation", |
| 109 "src/google/cacheinvalidation:cacheinvalidation_proto_cpp", | 109 "src/google/cacheinvalidation:cacheinvalidation_proto_cpp", |
| 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 # TODO(GYP) Test isolation stuff. | |
|
brettw
2016/05/23 22:06:26
There are some conditions in GYP about test_isolat
| |
| 118 if (is_android) { | 117 if (is_android) { |
| 119 import("//build/config/android/rules.gni") | 118 import("//build/config/android/rules.gni") |
| 120 | 119 |
| 121 # GYP: //third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation _proto_java | 120 # GYP: //third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation _proto_java |
| 122 proto_java_library("cacheinvalidation_proto_java") { | 121 proto_java_library("cacheinvalidation_proto_java") { |
| 123 proto_path = "src/proto" | 122 proto_path = "src/proto" |
| 124 sources = [ | 123 sources = [ |
| 125 "$proto_path/android_channel.proto", | 124 "$proto_path/android_channel.proto", |
| 126 "$proto_path/android_listener.proto", | 125 "$proto_path/android_listener.proto", |
| 127 "$proto_path/android_service.proto", | 126 "$proto_path/android_service.proto", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 235 "src/java/com/google/ipc/invalidation/util/NamedRunnable.java", | 234 "src/java/com/google/ipc/invalidation/util/NamedRunnable.java", |
| 236 "src/java/com/google/ipc/invalidation/util/Preconditions.java", | 235 "src/java/com/google/ipc/invalidation/util/Preconditions.java", |
| 237 "src/java/com/google/ipc/invalidation/util/ProtoWrapper.java", | 236 "src/java/com/google/ipc/invalidation/util/ProtoWrapper.java", |
| 238 "src/java/com/google/ipc/invalidation/util/Smearer.java", | 237 "src/java/com/google/ipc/invalidation/util/Smearer.java", |
| 239 "src/java/com/google/ipc/invalidation/util/TextBuilder.java", | 238 "src/java/com/google/ipc/invalidation/util/TextBuilder.java", |
| 240 "src/java/com/google/ipc/invalidation/util/TypedUtil.java", | 239 "src/java/com/google/ipc/invalidation/util/TypedUtil.java", |
| 241 "src/java/com/google/ipc/invalidation/util/UtilFormatter.java", | 240 "src/java/com/google/ipc/invalidation/util/UtilFormatter.java", |
| 242 ] | 241 ] |
| 243 } | 242 } |
| 244 } | 243 } |
| OLD | NEW |