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

Side by Side Diff: webrtc/system_wrappers/BUILD.gn

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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("../build/webrtc.gni") 10 import("../build/webrtc.gni")
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "include/field_trial_default.h", 143 "include/field_trial_default.h",
144 "source/field_trial_default.cc", 144 "source/field_trial_default.cc",
145 ] 145 ]
146 146
147 configs += [ "..:common_config" ] 147 configs += [ "..:common_config" ]
148 public_configs = [ "..:common_inherited_config" ] 148 public_configs = [ "..:common_inherited_config" ]
149 } 149 }
150 150
151 source_set("metrics_default") { 151 source_set("metrics_default") {
152 sources = [ 152 sources = [
153 "include/metrics_default.h",
153 "source/metrics_default.cc", 154 "source/metrics_default.cc",
154 ] 155 ]
155 156
156 configs += [ "..:common_config" ] 157 configs += [ "..:common_config" ]
157 public_configs = [ "..:common_inherited_config" ] 158 public_configs = [ "..:common_inherited_config" ]
158 } 159 }
159 160
160 source_set("system_wrappers_default") { 161 source_set("system_wrappers_default") {
161 configs += [ "..:common_config" ] 162 configs += [ "..:common_config" ]
162 public_configs = [ "..:common_inherited_config" ] 163 public_configs = [ "..:common_inherited_config" ]
(...skipping 22 matching lines...) Expand all
185 if (is_linux) { 186 if (is_linux) {
186 source_set("cpu_features_linux") { 187 source_set("cpu_features_linux") {
187 sources = [ 188 sources = [
188 "source/cpu_features_linux.c", 189 "source/cpu_features_linux.c",
189 ] 190 ]
190 191
191 configs += [ "..:common_config" ] 192 configs += [ "..:common_config" ]
192 public_configs = [ "..:common_inherited_config" ] 193 public_configs = [ "..:common_inherited_config" ]
193 } 194 }
194 } 195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698