Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: third_party/cacheinvalidation/cacheinvalidation.gyp

Issue 7706011: Use precompiled headers for most large projects. (Closed) Base URL: ssh://joi@192.168.1.201/home/joi/c/chrome/src@master
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698