| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'include_dirs': [ | 6 'include_dirs': [ |
| 7 '..', | 7 '..', |
| 8 ], | 8 ], |
| 9 'defines': [ | 9 'defines': [ |
| 10 'SYNC_IMPLEMENTATION', | 10 'SYNC_IMPLEMENTATION', |
| 11 ], | 11 ], |
| 12 'sources': [ | 12 'sources': [ |
| 13 # NOTE: If you add a file to this list, also add it to |
| 14 # sync/protocol/BUILD.gn |
| 13 'protocol/app_notification_specifics.proto', | 15 'protocol/app_notification_specifics.proto', |
| 14 'protocol/app_setting_specifics.proto', | 16 'protocol/app_setting_specifics.proto', |
| 15 'protocol/app_specifics.proto', | 17 'protocol/app_specifics.proto', |
| 16 'protocol/app_list_specifics.proto', | 18 'protocol/app_list_specifics.proto', |
| 17 'protocol/article_specifics.proto', | 19 'protocol/article_specifics.proto', |
| 18 'protocol/attachments.proto', | 20 'protocol/attachments.proto', |
| 19 'protocol/autofill_specifics.proto', | 21 'protocol/autofill_specifics.proto', |
| 20 'protocol/bookmark_specifics.proto', | 22 'protocol/bookmark_specifics.proto', |
| 21 'protocol/client_commands.proto', | 23 'protocol/client_commands.proto', |
| 22 'protocol/client_debug_info.proto', | 24 'protocol/client_debug_info.proto', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 53 'variables': { | 55 'variables': { |
| 54 'proto_in_dir': './protocol', | 56 'proto_in_dir': './protocol', |
| 55 'proto_out_dir': 'sync/protocol', | 57 'proto_out_dir': 'sync/protocol', |
| 56 'cc_generator_options': 'dllexport_decl=SYNC_EXPORT:', | 58 'cc_generator_options': 'dllexport_decl=SYNC_EXPORT:', |
| 57 'cc_include': 'sync/base/sync_export.h', | 59 'cc_include': 'sync/base/sync_export.h', |
| 58 }, | 60 }, |
| 59 'includes': [ | 61 'includes': [ |
| 60 '../build/protoc.gypi' | 62 '../build/protoc.gypi' |
| 61 ], | 63 ], |
| 62 } | 64 } |
| OLD | NEW |