| 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': [ |
| 11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
| 12 '../content/content.gyp:content_common', | 12 '../content/content.gyp:content_common', |
| 13 '../media/media.gyp:media', | 13 '../media/media.gyp:media', |
| 14 '../media/media.gyp:shared_memory_support', | 14 '../media/media.gyp:shared_memory_support', |
| 15 '../net/net.gyp:net', | 15 '../net/net.gyp:net', |
| 16 '../third_party/webrtc/common_audio/common_audio.gyp:common_audio', |
| 16 'copresence_proto', | 17 'copresence_proto', |
| 17 ], | 18 ], |
| 18 'include_dirs': [ | 19 'include_dirs': [ |
| 19 '..', | 20 '..', |
| 20 ], | 21 ], |
| 21 'sources': [ | 22 'sources': [ |
| 22 # Note: sources list duplicated in GN build. | 23 # Note: sources list duplicated in GN build. |
| 23 'copresence/copresence_constants.cc', | 24 'copresence/copresence_constants.cc', |
| 24 'copresence/copresence_manager_impl.cc', | 25 'copresence/copresence_manager_impl.cc', |
| 25 'copresence/copresence_state_impl.cc', | 26 'copresence/copresence_state_impl.cc', |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 'copresence/proto/rpcs.proto', | 106 'copresence/proto/rpcs.proto', |
| 106 ], | 107 ], |
| 107 'variables': { | 108 'variables': { |
| 108 'proto_in_dir': 'copresence/proto', | 109 'proto_in_dir': 'copresence/proto', |
| 109 'proto_out_dir': 'components/copresence/proto', | 110 'proto_out_dir': 'components/copresence/proto', |
| 110 }, | 111 }, |
| 111 'includes': [ '../build/protoc.gypi' ] | 112 'includes': [ '../build/protoc.gypi' ] |
| 112 }, | 113 }, |
| 113 ], | 114 ], |
| 114 } | 115 } |
| OLD | NEW |