| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 'target_name': 'cacheinvalidation', | 63 'target_name': 'cacheinvalidation', |
| 64 'type': '<(library)', | 64 'type': '<(library)', |
| 65 'sources': [ | 65 'sources': [ |
| 66 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.h', | 66 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.h', |
| 67 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.cc', | 67 '<(protoc_out_dir)/<(proto_dir_relpath)/types.pb.cc', |
| 68 'overrides/google/cacheinvalidation/callback.h', | 68 'overrides/google/cacheinvalidation/callback.h', |
| 69 'overrides/google/cacheinvalidation/compiler-specific.h', | 69 'overrides/google/cacheinvalidation/compiler-specific.h', |
| 70 'overrides/google/cacheinvalidation/googletest.h', | 70 'overrides/google/cacheinvalidation/googletest.h', |
| 71 'overrides/google/cacheinvalidation/logging.h', | 71 'overrides/google/cacheinvalidation/logging.h', |
| 72 'overrides/google/cacheinvalidation/mutex.h', | 72 'overrides/google/cacheinvalidation/mutex.h', |
| 73 'overrides/google/cacheinvalidation/random.h', |
| 73 'overrides/google/cacheinvalidation/stl-namespace.h' | 74 'overrides/google/cacheinvalidation/stl-namespace.h' |
| 74 'overrides/google/cacheinvalidation/string_util.h' | 75 'overrides/google/cacheinvalidation/string_util.h' |
| 75 'overrides/google/cacheinvalidation/time.h', | 76 'overrides/google/cacheinvalidation/time.h', |
| 76 'files/src/google/cacheinvalidation/invalidation-client-impl.cc', | 77 'files/src/google/cacheinvalidation/invalidation-client-impl.cc', |
| 77 'files/src/google/cacheinvalidation/invalidation-client-impl.h', | 78 'files/src/google/cacheinvalidation/invalidation-client-impl.h', |
| 78 'files/src/google/cacheinvalidation/invalidation-client.cc', | 79 'files/src/google/cacheinvalidation/invalidation-client.cc', |
| 79 'files/src/google/cacheinvalidation/invalidation-client.h', | 80 'files/src/google/cacheinvalidation/invalidation-client.h', |
| 80 'files/src/google/cacheinvalidation/log-macro.h', | 81 'files/src/google/cacheinvalidation/log-macro.h', |
| 81 'files/src/google/cacheinvalidation/network-manager.cc', | 82 'files/src/google/cacheinvalidation/network-manager.cc', |
| 82 'files/src/google/cacheinvalidation/network-manager.h', | 83 'files/src/google/cacheinvalidation/network-manager.h', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 ], | 130 ], |
| 130 }, | 131 }, |
| 131 ], | 132 ], |
| 132 } | 133 } |
| 133 | 134 |
| 134 # Local Variables: | 135 # Local Variables: |
| 135 # tab-width:2 | 136 # tab-width:2 |
| 136 # indent-tabs-mode:nil | 137 # indent-tabs-mode:nil |
| 137 # End: | 138 # End: |
| 138 # vim: set expandtab tabstop=2 shiftwidth=2: | 139 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |