| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 'files/src/google/cacheinvalidation/invalidation-client.h', | 80 'files/src/google/cacheinvalidation/invalidation-client.h', |
| 81 'files/src/google/cacheinvalidation/log-macro.h', | 81 'files/src/google/cacheinvalidation/log-macro.h', |
| 82 'files/src/google/cacheinvalidation/network-manager.cc', | 82 'files/src/google/cacheinvalidation/network-manager.cc', |
| 83 'files/src/google/cacheinvalidation/network-manager.h', | 83 'files/src/google/cacheinvalidation/network-manager.h', |
| 84 'files/src/google/cacheinvalidation/registration-update-manager.cc', | 84 'files/src/google/cacheinvalidation/registration-update-manager.cc', |
| 85 'files/src/google/cacheinvalidation/registration-update-manager.h', | 85 'files/src/google/cacheinvalidation/registration-update-manager.h', |
| 86 'files/src/google/cacheinvalidation/session-manager.cc', | 86 'files/src/google/cacheinvalidation/session-manager.cc', |
| 87 'files/src/google/cacheinvalidation/session-manager.h', | 87 'files/src/google/cacheinvalidation/session-manager.h', |
| 88 'files/src/google/cacheinvalidation/throttle.cc', | 88 'files/src/google/cacheinvalidation/throttle.cc', |
| 89 'files/src/google/cacheinvalidation/throttle.h', | 89 'files/src/google/cacheinvalidation/throttle.h', |
| 90 'files/src/google/cacheinvalidation/version-manager.cc', |
| 91 'files/src/google/cacheinvalidation/version-manager.h', |
| 90 ], | 92 ], |
| 91 'include_dirs': [ | 93 'include_dirs': [ |
| 92 '<(protoc_out_dir)', | 94 '<(protoc_out_dir)', |
| 93 './overrides', | 95 './overrides', |
| 94 './files/src', | 96 './files/src', |
| 95 ], | 97 ], |
| 96 'dependencies': [ | 98 'dependencies': [ |
| 97 '../../base/base.gyp:base', | 99 '../../base/base.gyp:base', |
| 98 '../../third_party/protobuf2/protobuf.gyp:protobuf_lite', | 100 '../../third_party/protobuf2/protobuf.gyp:protobuf_lite', |
| 99 'cacheinvalidation_proto', | 101 'cacheinvalidation_proto', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 130 ], | 132 ], |
| 131 }, | 133 }, |
| 132 ], | 134 ], |
| 133 } | 135 } |
| 134 | 136 |
| 135 # Local Variables: | 137 # Local Variables: |
| 136 # tab-width:2 | 138 # tab-width:2 |
| 137 # indent-tabs-mode:nil | 139 # indent-tabs-mode:nil |
| 138 # End: | 140 # End: |
| 139 # vim: set expandtab tabstop=2 shiftwidth=2: | 141 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |