| 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 'target_name': 'sync_proto', | 11 'target_name': 'sync_proto', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'sources': [ | 13 'sources': [ |
| 14 'sync.proto', | 14 'sync.proto', |
| 15 'encryption.proto', | 15 'encryption.proto', |
| 16 'app_specifics.proto', | 16 'app_specifics.proto', |
| 17 'autofill_specifics.proto', | 17 'autofill_specifics.proto', |
| 18 'bookmark_specifics.proto', | 18 'bookmark_specifics.proto', |
| 19 'extension_setting_specifics.proto', |
| 19 'extension_specifics.proto', | 20 'extension_specifics.proto', |
| 20 'nigori_specifics.proto', | 21 'nigori_specifics.proto', |
| 21 'password_specifics.proto', | 22 'password_specifics.proto', |
| 22 'preference_specifics.proto', | 23 'preference_specifics.proto', |
| 23 'search_engine_specifics.proto', | 24 'search_engine_specifics.proto', |
| 24 'session_specifics.proto', | 25 'session_specifics.proto', |
| 25 'test.proto', | 26 'test.proto', |
| 26 'theme_specifics.proto', | 27 'theme_specifics.proto', |
| 27 'typed_url_specifics.proto', | 28 'typed_url_specifics.proto', |
| 28 ], | 29 ], |
| 29 'variables': { | 30 'variables': { |
| 30 'proto_out_dir': 'chrome/browser/sync/protocol', | 31 'proto_out_dir': 'chrome/browser/sync/protocol', |
| 31 }, | 32 }, |
| 32 'includes': ['../../../../build/protoc.gypi'], | 33 'includes': ['../../../../build/protoc.gypi'], |
| 33 }, | 34 }, |
| 34 ], | 35 ], |
| 35 } | 36 } |
| OLD | NEW |