Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Side by Side Diff: webrtc/system_wrappers/system_wrappers.gyp

Issue 1915523002: Add a default implementation in metrics_default.cc of histograms methods in system_wrappers/interfac (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « webrtc/system_wrappers/source/metrics_unittest.cc ('k') | webrtc/system_wrappers/system_wrappers_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698