OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # The directory that contains the sync protocol buffer definitions. | 7 # The directory that contains the sync protocol buffer definitions. |
8 # This variable can be overridden for other builds that require the proto | 8 # This variable can be overridden for other builds that require the proto |
9 # files to be stored in an intermediate directory. | 9 # files to be stored in an intermediate directory. |
10 'sync_proto_sources_dir%': '.', | 10 'sync_proto_sources_dir%': '.', |
11 | 11 |
12 # The list of sync protocol buffer definitions. | 12 # The list of sync protocol buffer definitions. |
13 'sync_proto_source_paths': [ | 13 'sync_proto_source_paths': [ |
14 # NOTE: If you add a file to this list, also add it to | |
15 # sync/protocol/BUILD.gn | |
16 # TODO(pvalenzuela): Eliminate the requirement to update the GN file. | 14 # TODO(pvalenzuela): Eliminate the requirement to update the GN file. |
17 '<(sync_proto_sources_dir)/app_notification_specifics.proto', | 15 '<(sync_proto_sources_dir)/app_notification_specifics.proto', |
18 '<(sync_proto_sources_dir)/app_setting_specifics.proto', | 16 '<(sync_proto_sources_dir)/app_setting_specifics.proto', |
19 '<(sync_proto_sources_dir)/app_specifics.proto', | 17 '<(sync_proto_sources_dir)/app_specifics.proto', |
20 '<(sync_proto_sources_dir)/app_list_specifics.proto', | 18 '<(sync_proto_sources_dir)/app_list_specifics.proto', |
21 '<(sync_proto_sources_dir)/article_specifics.proto', | 19 '<(sync_proto_sources_dir)/article_specifics.proto', |
22 '<(sync_proto_sources_dir)/attachments.proto', | 20 '<(sync_proto_sources_dir)/attachments.proto', |
23 '<(sync_proto_sources_dir)/autofill_specifics.proto', | 21 '<(sync_proto_sources_dir)/autofill_specifics.proto', |
24 '<(sync_proto_sources_dir)/bookmark_specifics.proto', | 22 '<(sync_proto_sources_dir)/bookmark_specifics.proto', |
25 '<(sync_proto_sources_dir)/client_commands.proto', | 23 '<(sync_proto_sources_dir)/client_commands.proto', |
(...skipping 25 matching lines...) Expand all Loading... |
51 '<(sync_proto_sources_dir)/synced_notification_app_info_specifics.proto', | 49 '<(sync_proto_sources_dir)/synced_notification_app_info_specifics.proto', |
52 '<(sync_proto_sources_dir)/synced_notification_specifics.proto', | 50 '<(sync_proto_sources_dir)/synced_notification_specifics.proto', |
53 '<(sync_proto_sources_dir)/test.proto', | 51 '<(sync_proto_sources_dir)/test.proto', |
54 '<(sync_proto_sources_dir)/theme_specifics.proto', | 52 '<(sync_proto_sources_dir)/theme_specifics.proto', |
55 '<(sync_proto_sources_dir)/typed_url_specifics.proto', | 53 '<(sync_proto_sources_dir)/typed_url_specifics.proto', |
56 '<(sync_proto_sources_dir)/unique_position.proto', | 54 '<(sync_proto_sources_dir)/unique_position.proto', |
57 '<(sync_proto_sources_dir)/wifi_credential_specifics.proto', | 55 '<(sync_proto_sources_dir)/wifi_credential_specifics.proto', |
58 ], | 56 ], |
59 }, | 57 }, |
60 } | 58 } |
OLD | NEW |