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 122 matching lines...) Loading... |
133 ], | 133 ], |
134 }, | 134 }, |
135 # Unittests for the cache invalidation library. | 135 # Unittests for the cache invalidation library. |
136 { | 136 { |
137 'target_name': 'cacheinvalidation_unittests', | 137 'target_name': 'cacheinvalidation_unittests', |
138 'type': 'executable', | 138 'type': 'executable', |
139 'sources': [ | 139 'sources': [ |
140 '../../base/test/run_all_unittests.cc', | 140 '../../base/test/run_all_unittests.cc', |
141 'files/src/google/cacheinvalidation/system-resources-for-test.h', | 141 'files/src/google/cacheinvalidation/system-resources-for-test.h', |
142 'files/src/google/cacheinvalidation/invalidation-client-impl_test.cc', | 142 'files/src/google/cacheinvalidation/invalidation-client-impl_test.cc', |
| 143 'files/src/google/cacheinvalidation/persistence-manager_test.cc', |
143 'files/src/google/cacheinvalidation/persistence-utils_test.cc', | 144 'files/src/google/cacheinvalidation/persistence-utils_test.cc', |
144 'files/src/google/cacheinvalidation/throttle_test.cc', | 145 'files/src/google/cacheinvalidation/throttle_test.cc', |
145 ], | 146 ], |
146 'dependencies': [ | 147 'dependencies': [ |
147 '../../base/base.gyp:base', | 148 '../../base/base.gyp:base', |
148 '../../base/base.gyp:test_support_base', | 149 '../../base/base.gyp:test_support_base', |
149 '../../testing/gmock.gyp:gmock', | 150 '../../testing/gmock.gyp:gmock', |
150 '../../testing/gtest.gyp:gtest', | 151 '../../testing/gtest.gyp:gtest', |
151 'cacheinvalidation', | 152 'cacheinvalidation', |
152 ], | 153 ], |
153 }, | 154 }, |
154 ], | 155 ], |
155 } | 156 } |
156 | 157 |
157 # Local Variables: | 158 # Local Variables: |
158 # tab-width:2 | 159 # tab-width:2 |
159 # indent-tabs-mode:nil | 160 # indent-tabs-mode:nil |
160 # End: | 161 # End: |
161 # vim: set expandtab tabstop=2 shiftwidth=2: | 162 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |