OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("public") { |
| 6 sources = [ |
| 7 "ack_handle.cc", |
| 8 "ack_handle.h", |
| 9 "ack_handler.cc", |
| 10 "ack_handler.h", |
| 11 "invalidation.cc", |
| 12 "invalidation.h", |
| 13 "invalidation_export.h", |
| 14 "invalidation_handler.cc", |
| 15 "invalidation_handler.h", |
| 16 "invalidation_service.h", |
| 17 "invalidation_util.cc", |
| 18 "invalidation_util.h", |
| 19 "invalidator_state.cc", |
| 20 "invalidator_state.h", |
| 21 "object_id_invalidation_map.cc", |
| 22 "object_id_invalidation_map.h", |
| 23 "single_object_invalidation_set.cc", |
| 24 "single_object_invalidation_set.h", |
| 25 ] |
| 26 public_deps = [ |
| 27 "//third_party/cacheinvalidation", |
| 28 ] |
| 29 deps = [ |
| 30 "//base", |
| 31 ] |
| 32 } |
OLD | NEW |