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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 'target_name': 'field_trial_default', | 173 'target_name': 'field_trial_default', |
174 'type': 'static_library', | 174 'type': 'static_library', |
175 'sources': [ | 175 'sources': [ |
176 'include/field_trial_default.h', | 176 'include/field_trial_default.h', |
177 'source/field_trial_default.cc', | 177 'source/field_trial_default.cc', |
178 ] | 178 ] |
179 }, { | 179 }, { |
180 'target_name': 'metrics_default', | 180 'target_name': 'metrics_default', |
181 'type': 'static_library', | 181 'type': 'static_library', |
182 'sources': [ | 182 'sources': [ |
| 183 'include/metrics_default.h', |
183 'source/metrics_default.cc', | 184 'source/metrics_default.cc', |
184 ], | 185 ], |
185 }, { | 186 }, { |
186 'target_name': 'system_wrappers_default', | 187 'target_name': 'system_wrappers_default', |
187 'type': 'static_library', | 188 'type': 'static_library', |
188 'dependencies': [ | 189 'dependencies': [ |
189 'system_wrappers', | 190 'system_wrappers', |
190 'field_trial_default', | 191 'field_trial_default', |
191 'metrics_default', | 192 'metrics_default', |
192 ] | 193 ] |
193 }, | 194 }, |
194 ], # targets | 195 ], # targets |
195 } | 196 } |
196 | 197 |
OLD | NEW |