OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 # TODO(akalin): Make it so that warnings are errors on Windows. | 5 # TODO(akalin): Make it so that warnings are errors on Windows. |
6 # TODO(akalin): Clean up warnings on Windows. | 6 # TODO(akalin): Clean up warnings on Windows. |
7 | 7 |
8 { | 8 { |
9 'variables': { | 9 'variables': { |
10 # The root directory for the proto files. | 10 # The root directory for the proto files. |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 '../../third_party/protobuf2/protobuf.gyp:protobuf_lite', | 79 '../../third_party/protobuf2/protobuf.gyp:protobuf_lite', |
80 ], | 80 ], |
81 }, | 81 }, |
82 # The main cache invalidation library. External clients should depend | 82 # The main cache invalidation library. External clients should depend |
83 # only on this. | 83 # only on this. |
84 { | 84 { |
85 'target_name': 'cacheinvalidation', | 85 'target_name': 'cacheinvalidation', |
86 'type': '<(library)', | 86 'type': '<(library)', |
87 'sources': [ | 87 'sources': [ |
88 'overrides/google/cacheinvalidation/callback.h', | 88 'overrides/google/cacheinvalidation/callback.h', |
| 89 'overrides/google/cacheinvalidation/compiler-specific.h', |
89 'overrides/google/cacheinvalidation/googletest.h', | 90 'overrides/google/cacheinvalidation/googletest.h', |
90 'overrides/google/cacheinvalidation/logging.h', | 91 'overrides/google/cacheinvalidation/logging.h', |
91 'overrides/google/cacheinvalidation/mutex.h', | 92 'overrides/google/cacheinvalidation/mutex.h', |
92 'overrides/google/cacheinvalidation/stl-namespace.h' | 93 'overrides/google/cacheinvalidation/stl-namespace.h' |
93 'overrides/google/cacheinvalidation/string_util.h' | 94 'overrides/google/cacheinvalidation/string_util.h' |
94 'overrides/google/cacheinvalidation/time.h', | 95 'overrides/google/cacheinvalidation/time.h', |
95 'files/src/google/cacheinvalidation/invalidation-client-impl.cc', | 96 'files/src/google/cacheinvalidation/invalidation-client-impl.cc', |
96 'files/src/google/cacheinvalidation/invalidation-client-impl.h', | 97 'files/src/google/cacheinvalidation/invalidation-client-impl.h', |
97 'files/src/google/cacheinvalidation/invalidation-client.cc', | 98 'files/src/google/cacheinvalidation/invalidation-client.cc', |
98 'files/src/google/cacheinvalidation/invalidation-client.h', | 99 'files/src/google/cacheinvalidation/invalidation-client.h', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 ], | 144 ], |
144 }, | 145 }, |
145 ], | 146 ], |
146 } | 147 } |
147 | 148 |
148 # Local Variables: | 149 # Local Variables: |
149 # tab-width:2 | 150 # tab-width:2 |
150 # indent-tabs-mode:nil | 151 # indent-tabs-mode:nil |
151 # End: | 152 # End: |
152 # vim: set expandtab tabstop=2 shiftwidth=2: | 153 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |