| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'copresence', | 8 'target_name': 'copresence', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 { | 84 { |
| 85 # Protobuf compiler / generate rule for copresence. | 85 # Protobuf compiler / generate rule for copresence. |
| 86 # GN version: //components/copresence/proto | 86 # GN version: //components/copresence/proto |
| 87 # Note: These protos are auto-generated from the protos of the | 87 # Note: These protos are auto-generated from the protos of the |
| 88 # Copresence server. Currently this strips all formatting and comments | 88 # Copresence server. Currently this strips all formatting and comments |
| 89 # but makes sure that we are always using up to date protos. | 89 # but makes sure that we are always using up to date protos. |
| 90 'target_name': 'copresence_proto', | 90 'target_name': 'copresence_proto', |
| 91 'type': 'static_library', | 91 'type': 'static_library', |
| 92 'sources': [ | 92 'sources': [ |
| 93 'copresence/proto/codes.proto', | 93 'copresence/proto/codes.proto', |
| 94 'copresence/proto/config_data.proto', |
| 94 'copresence/proto/data.proto', | 95 'copresence/proto/data.proto', |
| 95 'copresence/proto/enums.proto', | 96 'copresence/proto/enums.proto', |
| 96 'copresence/proto/identity.proto', | 97 'copresence/proto/identity.proto', |
| 97 'copresence/proto/push_message.proto', | 98 'copresence/proto/push_message.proto', |
| 98 'copresence/proto/rpcs.proto', | 99 'copresence/proto/rpcs.proto', |
| 99 ], | 100 ], |
| 100 'variables': { | 101 'variables': { |
| 101 'proto_in_dir': 'copresence/proto', | 102 'proto_in_dir': 'copresence/proto', |
| 102 'proto_out_dir': 'components/copresence/proto', | 103 'proto_out_dir': 'components/copresence/proto', |
| 103 }, | 104 }, |
| 104 'includes': [ '../build/protoc.gypi' ] | 105 'includes': [ '../build/protoc.gypi' ] |
| 105 }, | 106 }, |
| 106 ], | 107 ], |
| 107 } | 108 } |
| OLD | NEW |