| 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", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "managed_user_shared_setting_specifics.proto", | 32 "managed_user_shared_setting_specifics.proto", |
| 33 "managed_user_specifics.proto", | 33 "managed_user_specifics.proto", |
| 34 "password_specifics.proto", | 34 "password_specifics.proto", |
| 35 "preference_specifics.proto", | 35 "preference_specifics.proto", |
| 36 "priority_preference_specifics.proto", | 36 "priority_preference_specifics.proto", |
| 37 "search_engine_specifics.proto", | 37 "search_engine_specifics.proto", |
| 38 "session_specifics.proto", | 38 "session_specifics.proto", |
| 39 "sync.proto", | 39 "sync.proto", |
| 40 "sync_enums.proto", | 40 "sync_enums.proto", |
| 41 "synced_notification_app_info_specifics.proto", | 41 "synced_notification_app_info_specifics.proto", |
| 42 "synced_notification_data.proto", | |
| 43 "synced_notification_render.proto", | |
| 44 "synced_notification_specifics.proto", | 42 "synced_notification_specifics.proto", |
| 45 "test.proto", | 43 "test.proto", |
| 46 "theme_specifics.proto", | 44 "theme_specifics.proto", |
| 47 "typed_url_specifics.proto", | 45 "typed_url_specifics.proto", |
| 48 "unique_position.proto", | 46 "unique_position.proto", |
| 49 "wifi_credential_specifics.proto", | 47 "wifi_credential_specifics.proto", |
| 50 ] | 48 ] |
| 51 | 49 |
| 52 cc_generator_options = "dllexport_decl=SYNC_PROTO_EXPORT:" | 50 cc_generator_options = "dllexport_decl=SYNC_PROTO_EXPORT:" |
| 53 cc_include = "sync/protocol/sync_proto_export.h" | 51 cc_include = "sync/protocol/sync_proto_export.h" |
| 54 | 52 |
| 55 defines = [ "SYNC_PROTO_IMPLEMENTATION" ] | 53 defines = [ "SYNC_PROTO_IMPLEMENTATION" ] |
| 56 | 54 |
| 57 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] | 55 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 58 } | 56 } |
| OLD | NEW |