OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 # This library should build cleanly with the extra warnings turned on | 7 # This library should build cleanly with the extra warnings turned on |
8 # for Chromium. | 8 # for Chromium. |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 # The root directory for the proto files. | 10 # The root directory for the proto files. |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 ], | 91 ], |
92 # This target exports a hard dependency because it contains generated | 92 # This target exports a hard dependency because it contains generated |
93 # header files. | 93 # header files. |
94 'hard_dependency': 1, | 94 'hard_dependency': 1, |
95 }, | 95 }, |
96 # The main cache invalidation library. External clients should depend | 96 # The main cache invalidation library. External clients should depend |
97 # only on this. | 97 # only on this. |
98 { | 98 { |
99 'target_name': 'cacheinvalidation', | 99 'target_name': 'cacheinvalidation', |
100 'type': 'static_library', | 100 'type': 'static_library', |
| 101 'msvs_disable_precompiled_header': '1', |
101 'sources': [ | 102 'sources': [ |
102 'overrides/google/cacheinvalidation/callback.h', | 103 'overrides/google/cacheinvalidation/callback.h', |
103 'overrides/google/cacheinvalidation/compiler-specific.h', | 104 'overrides/google/cacheinvalidation/compiler-specific.h', |
104 'overrides/google/cacheinvalidation/gmock.h', | 105 'overrides/google/cacheinvalidation/gmock.h', |
105 'overrides/google/cacheinvalidation/googletest.h', | 106 'overrides/google/cacheinvalidation/googletest.h', |
106 'overrides/google/cacheinvalidation/v2/logging.h', | 107 'overrides/google/cacheinvalidation/v2/logging.h', |
107 'overrides/google/cacheinvalidation/md5.h', | 108 'overrides/google/cacheinvalidation/md5.h', |
108 'overrides/google/cacheinvalidation/v2/mutex.h', | 109 'overrides/google/cacheinvalidation/v2/mutex.h', |
109 'overrides/google/cacheinvalidation/random.h', | 110 'overrides/google/cacheinvalidation/random.h', |
110 'overrides/google/cacheinvalidation/v2/scoped_ptr.h', | 111 'overrides/google/cacheinvalidation/v2/scoped_ptr.h', |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 '../../base/base.gyp:base', | 196 '../../base/base.gyp:base', |
196 # Needed by run_all_unittests.cc. | 197 # Needed by run_all_unittests.cc. |
197 '../../base/base.gyp:test_support_base', | 198 '../../base/base.gyp:test_support_base', |
198 '../../testing/gmock.gyp:gmock', | 199 '../../testing/gmock.gyp:gmock', |
199 '../../testing/gtest.gyp:gtest', | 200 '../../testing/gtest.gyp:gtest', |
200 'cacheinvalidation', | 201 'cacheinvalidation', |
201 ], | 202 ], |
202 }, | 203 }, |
203 ], | 204 ], |
204 } | 205 } |
OLD | NEW |