OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |