| 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 config("cacheinvalidation_config") { | 5 config("cacheinvalidation_config") { |
| 6 include_dirs = [ | 6 include_dirs = [ |
| 7 "overrides", | 7 "overrides", |
| 8 "src", | 8 "src", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "src/google/cacheinvalidation/impl/throttle.h", | 68 "src/google/cacheinvalidation/impl/throttle.h", |
| 69 "src/google/cacheinvalidation/impl/ticl-message-validator.cc", | 69 "src/google/cacheinvalidation/impl/ticl-message-validator.cc", |
| 70 "src/google/cacheinvalidation/impl/ticl-message-validator.h", | 70 "src/google/cacheinvalidation/impl/ticl-message-validator.h", |
| 71 "src/google/cacheinvalidation/include/invalidation-client.h", | 71 "src/google/cacheinvalidation/include/invalidation-client.h", |
| 72 "src/google/cacheinvalidation/include/invalidation-client-factory.h", | 72 "src/google/cacheinvalidation/include/invalidation-client-factory.h", |
| 73 "src/google/cacheinvalidation/include/invalidation-listener.h", | 73 "src/google/cacheinvalidation/include/invalidation-listener.h", |
| 74 "src/google/cacheinvalidation/include/system-resources.h", | 74 "src/google/cacheinvalidation/include/system-resources.h", |
| 75 "src/google/cacheinvalidation/include/types.h", | 75 "src/google/cacheinvalidation/include/types.h", |
| 76 ] | 76 ] |
| 77 | 77 |
| 78 direct_dependent_configs = [ ":cacheinvalidation_config" ] | 78 public_configs = [ ":cacheinvalidation_config" ] |
| 79 | 79 |
| 80 deps = [ | 80 deps = [ |
| 81 "src/google/cacheinvalidation:cacheinvalidation_proto_cpp", | 81 "src/google/cacheinvalidation:cacheinvalidation_proto_cpp", |
| 82 "//base", | 82 "//base", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 if (is_win) { | 85 if (is_win) { |
| 86 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 86 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 87 cflags = [ "/wd4267" ] | 87 cflags = [ "/wd4267" ] |
| 88 } | 88 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 106 ":cacheinvalidation", | 106 ":cacheinvalidation", |
| 107 "src/google/cacheinvalidation:cacheinvalidation_proto_cpp", | 107 "src/google/cacheinvalidation:cacheinvalidation_proto_cpp", |
| 108 "//base", | 108 "//base", |
| 109 "//base/test:run_all_unittests", | 109 "//base/test:run_all_unittests", |
| 110 "//testing/gmock", | 110 "//testing/gmock", |
| 111 "//testing/gtest", | 111 "//testing/gtest", |
| 112 ] | 112 ] |
| 113 } | 113 } |
| 114 | 114 |
| 115 # TODO(GYP) A bunch of Android-specific stuff. | 115 # TODO(GYP) A bunch of Android-specific stuff. |
| OLD | NEW |