OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 'target_name': 'field_trial_default', | 175 'target_name': 'field_trial_default', |
176 'type': 'static_library', | 176 'type': 'static_library', |
177 'sources': [ | 177 'sources': [ |
178 'include/field_trial_default.h', | 178 'include/field_trial_default.h', |
179 'source/field_trial_default.cc', | 179 'source/field_trial_default.cc', |
180 ] | 180 ] |
181 }, { | 181 }, { |
182 'target_name': 'metrics_default', | 182 'target_name': 'metrics_default', |
183 'type': 'static_library', | 183 'type': 'static_library', |
184 'sources': [ | 184 'sources': [ |
| 185 'include/metrics_default.h', |
185 'source/metrics_default.cc', | 186 'source/metrics_default.cc', |
186 ], | 187 ], |
187 }, { | 188 }, { |
188 'target_name': 'system_wrappers_default', | 189 'target_name': 'system_wrappers_default', |
189 'type': 'static_library', | 190 'type': 'static_library', |
190 'dependencies': [ | 191 'dependencies': [ |
191 'system_wrappers', | 192 'system_wrappers', |
192 'field_trial_default', | 193 'field_trial_default', |
193 'metrics_default', | 194 'metrics_default', |
194 ] | 195 ] |
195 }, | 196 }, |
196 ], # targets | 197 ], # targets |
197 } | 198 } |
198 | 199 |
OLD | NEW |