| 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 { | 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 'message': 'Generating C++ code from <(RULE_INPUT_PATH)', | 54 'message': 'Generating C++ code from <(RULE_INPUT_PATH)', |
| 55 }, | 55 }, |
| 56 ], | 56 ], |
| 57 'dependencies': [ | 57 'dependencies': [ |
| 58 '../../third_party/protobuf/protobuf.gyp:protoc#host', | 58 '../../third_party/protobuf/protobuf.gyp:protoc#host', |
| 59 ], | 59 ], |
| 60 }, | 60 }, |
| 61 # The C++ files generated from the cache invalidation protocol buffers. | 61 # The C++ files generated from the cache invalidation protocol buffers. |
| 62 { | 62 { |
| 63 'target_name': 'cacheinvalidation_proto_cpp', | 63 'target_name': 'cacheinvalidation_proto_cpp', |
| 64 'type': '<(library)', | 64 'type': 'static_library', |
| 65 'sources': [ | 65 'sources': [ |
| 66 '<(protoc_out_dir)/<(proto_dir_relpath)/internal.pb.h', | 66 '<(protoc_out_dir)/<(proto_dir_relpath)/internal.pb.h', |
| 67 '<(protoc_out_dir)/<(proto_dir_relpath)/internal.pb.cc', | 67 '<(protoc_out_dir)/<(proto_dir_relpath)/internal.pb.cc', |
| 68 '<(protoc_out_dir)/<(proto_dir_relpath)/ticl_persistence.pb.h', | 68 '<(protoc_out_dir)/<(proto_dir_relpath)/ticl_persistence.pb.h', |
| 69 '<(protoc_out_dir)/<(proto_dir_relpath)/ticl_persistence.pb.cc', | 69 '<(protoc_out_dir)/<(proto_dir_relpath)/ticl_persistence.pb.cc', |
| 70 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.h', | 70 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.h', |
| 71 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.cc', | 71 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.cc', |
| 72 ], | 72 ], |
| 73 'dependencies': [ | 73 'dependencies': [ |
| 74 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', | 74 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 86 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', | 86 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 87 ], | 87 ], |
| 88 # This target exports a hard dependency because it contains generated | 88 # This target exports a hard dependency because it contains generated |
| 89 # header files. | 89 # header files. |
| 90 'hard_dependency': 1, | 90 'hard_dependency': 1, |
| 91 }, | 91 }, |
| 92 # The main cache invalidation library. External clients should depend | 92 # The main cache invalidation library. External clients should depend |
| 93 # only on this. | 93 # only on this. |
| 94 { | 94 { |
| 95 'target_name': 'cacheinvalidation', | 95 'target_name': 'cacheinvalidation', |
| 96 'type': '<(library)', | 96 'type': 'static_library', |
| 97 'sources': [ | 97 'sources': [ |
| 98 'overrides/google/cacheinvalidation/callback.h', | 98 'overrides/google/cacheinvalidation/callback.h', |
| 99 'overrides/google/cacheinvalidation/compiler-specific.h', | 99 'overrides/google/cacheinvalidation/compiler-specific.h', |
| 100 'overrides/google/cacheinvalidation/gmock.h', | 100 'overrides/google/cacheinvalidation/gmock.h', |
| 101 'overrides/google/cacheinvalidation/googletest.h', | 101 'overrides/google/cacheinvalidation/googletest.h', |
| 102 'overrides/google/cacheinvalidation/hash_map.h', | 102 'overrides/google/cacheinvalidation/hash_map.h', |
| 103 'overrides/google/cacheinvalidation/logging.h', | 103 'overrides/google/cacheinvalidation/logging.h', |
| 104 'overrides/google/cacheinvalidation/md5.h', | 104 'overrides/google/cacheinvalidation/md5.h', |
| 105 'overrides/google/cacheinvalidation/mutex.h', | 105 'overrides/google/cacheinvalidation/mutex.h', |
| 106 'overrides/google/cacheinvalidation/random.h', | 106 'overrides/google/cacheinvalidation/random.h', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 ], | 176 ], |
| 177 }, | 177 }, |
| 178 ], | 178 ], |
| 179 } | 179 } |
| 180 | 180 |
| 181 # Local Variables: | 181 # Local Variables: |
| 182 # tab-width:2 | 182 # tab-width:2 |
| 183 # indent-tabs-mode:nil | 183 # indent-tabs-mode:nil |
| 184 # End: | 184 # End: |
| 185 # vim: set expandtab tabstop=2 shiftwidth=2: | 185 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |