| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 proto_library("protocol") { | 7 proto_library("protocol") { |
| 8 sources = [ | 8 sources = [ |
| 9 "app_notification_specifics.proto", | 9 "app_notification_specifics.proto", |
| 10 "app_setting_specifics.proto", | 10 "app_setting_specifics.proto", |
| 11 "app_specifics.proto", | 11 "app_specifics.proto", |
| 12 "app_list_specifics.proto", | 12 "app_list_specifics.proto", |
| 13 "article_specifics.proto", | 13 "article_specifics.proto", |
| 14 "attachments.proto", | 14 "attachments.proto", |
| 15 "autofill_specifics.proto", | 15 "autofill_specifics.proto", |
| 16 "bookmark_specifics.proto", | 16 "bookmark_specifics.proto", |
| 17 "client_commands.proto", | 17 "client_commands.proto", |
| 18 "client_debug_info.proto", | 18 "client_debug_info.proto", |
| 19 "device_info_specifics.proto", | 19 "device_info_specifics.proto", |
| 20 "dictionary_specifics.proto", | 20 "dictionary_specifics.proto", |
| 21 "encryption.proto", | 21 "encryption.proto", |
| 22 "experiment_status.proto", |
| 22 "experiments_specifics.proto", | 23 "experiments_specifics.proto", |
| 23 "extension_setting_specifics.proto", | 24 "extension_setting_specifics.proto", |
| 24 "extension_specifics.proto", | 25 "extension_specifics.proto", |
| 25 "favicon_image_specifics.proto", | 26 "favicon_image_specifics.proto", |
| 26 "favicon_tracking_specifics.proto", | 27 "favicon_tracking_specifics.proto", |
| 27 "get_updates_caller_info.proto", | 28 "get_updates_caller_info.proto", |
| 28 "history_delete_directive_specifics.proto", | 29 "history_delete_directive_specifics.proto", |
| 29 "nigori_specifics.proto", | 30 "nigori_specifics.proto", |
| 30 "managed_user_setting_specifics.proto", | 31 "managed_user_setting_specifics.proto", |
| 31 "managed_user_shared_setting_specifics.proto", | 32 "managed_user_shared_setting_specifics.proto", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 47 "unique_position.proto", | 48 "unique_position.proto", |
| 48 ] | 49 ] |
| 49 | 50 |
| 50 cc_generator_options = "dllexport_decl=SYNC_PROTO_EXPORT:" | 51 cc_generator_options = "dllexport_decl=SYNC_PROTO_EXPORT:" |
| 51 cc_include = "sync/protocol/sync_proto_export.h" | 52 cc_include = "sync/protocol/sync_proto_export.h" |
| 52 | 53 |
| 53 defines = [ "SYNC_PROTO_IMPLEMENTATION" ] | 54 defines = [ "SYNC_PROTO_IMPLEMENTATION" ] |
| 54 | 55 |
| 55 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] | 56 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 56 } | 57 } |
| OLD | NEW |