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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 "include/field_trial_default.h", | 141 "include/field_trial_default.h", |
142 "source/field_trial_default.cc", | 142 "source/field_trial_default.cc", |
143 ] | 143 ] |
144 | 144 |
145 configs += [ "..:common_config" ] | 145 configs += [ "..:common_config" ] |
146 public_configs = [ "..:common_inherited_config" ] | 146 public_configs = [ "..:common_inherited_config" ] |
147 } | 147 } |
148 | 148 |
149 source_set("metrics_default") { | 149 source_set("metrics_default") { |
150 sources = [ | 150 sources = [ |
| 151 "include/metrics_default.h", |
151 "source/metrics_default.cc", | 152 "source/metrics_default.cc", |
152 ] | 153 ] |
153 | 154 |
154 configs += [ "..:common_config" ] | 155 configs += [ "..:common_config" ] |
155 public_configs = [ "..:common_inherited_config" ] | 156 public_configs = [ "..:common_inherited_config" ] |
156 } | 157 } |
157 | 158 |
158 source_set("system_wrappers_default") { | 159 source_set("system_wrappers_default") { |
159 configs += [ "..:common_config" ] | 160 configs += [ "..:common_config" ] |
160 public_configs = [ "..:common_inherited_config" ] | 161 public_configs = [ "..:common_inherited_config" ] |
(...skipping 22 matching lines...) Expand all Loading... |
183 if (is_linux) { | 184 if (is_linux) { |
184 source_set("cpu_features_linux") { | 185 source_set("cpu_features_linux") { |
185 sources = [ | 186 sources = [ |
186 "source/cpu_features_linux.c", | 187 "source/cpu_features_linux.c", |
187 ] | 188 ] |
188 | 189 |
189 configs += [ "..:common_config" ] | 190 configs += [ "..:common_config" ] |
190 public_configs = [ "..:common_inherited_config" ] | 191 public_configs = [ "..:common_inherited_config" ] |
191 } | 192 } |
192 } | 193 } |
OLD | NEW |