| 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 # Protobuf compiler / generate rule for sync.proto. This is used by | 11 # Protobuf compiler / generate rule for sync.proto. This is used by |
| 12 # test code in net, which is why it's isolated into its own .gyp file. | 12 # test code in net, which is why it's isolated into its own .gyp file. |
| 13 'target_name': 'sync_proto', | 13 'target_name': 'sync_proto', |
| 14 'type': 'none', | 14 'type': 'none', |
| 15 'sources': [ | 15 'sources': [ |
| 16 'sync.proto', | 16 'sync.proto', |
| 17 'encryption.proto', | 17 'encryption.proto', |
| 18 'app_specifics.proto', |
| 18 'autofill_specifics.proto', | 19 'autofill_specifics.proto', |
| 19 'bookmark_specifics.proto', | 20 'bookmark_specifics.proto', |
| 20 'extension_specifics.proto', | 21 'extension_specifics.proto', |
| 21 'nigori_specifics.proto', | 22 'nigori_specifics.proto', |
| 22 'password_specifics.proto', | 23 'password_specifics.proto', |
| 23 'preference_specifics.proto', | 24 'preference_specifics.proto', |
| 24 'theme_specifics.proto', | 25 'theme_specifics.proto', |
| 25 'typed_url_specifics.proto', | 26 'typed_url_specifics.proto', |
| 26 ], | 27 ], |
| 27 'rules': [ | 28 'rules': [ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 }, | 73 }, |
| 73 }, | 74 }, |
| 74 ], | 75 ], |
| 75 } | 76 } |
| 76 | 77 |
| 77 # Local Variables: | 78 # Local Variables: |
| 78 # tab-width:2 | 79 # tab-width:2 |
| 79 # indent-tabs-mode:nil | 80 # indent-tabs-mode:nil |
| 80 # End: | 81 # End: |
| 81 # vim: set expandtab tabstop=2 shiftwidth=2: | 82 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |