| 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 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 | 123 |
| 124 rtc_source_set("cpu_features_api") { | 124 rtc_source_set("cpu_features_api") { |
| 125 sources = [ | 125 sources = [ |
| 126 "include/cpu_features_wrapper.h", | 126 "include/cpu_features_wrapper.h", |
| 127 ] | 127 ] |
| 128 deps = [ | 128 deps = [ |
| 129 "..:webrtc_common", | 129 "..:webrtc_common", |
| 130 ] | 130 ] |
| 131 } | 131 } |
| 132 | 132 |
| 133 rtc_source_set("asm_defines") { |
| 134 sources = [ |
| 135 "include/asm_defines.h", |
| 136 ] |
| 137 } |
| 138 |
| 133 rtc_source_set("field_trial_api") { | 139 rtc_source_set("field_trial_api") { |
| 134 sources = [ | 140 sources = [ |
| 135 "include/field_trial.h", | 141 "include/field_trial.h", |
| 136 ] | 142 ] |
| 137 } | 143 } |
| 138 | 144 |
| 139 rtc_source_set("metrics_api") { | 145 rtc_source_set("metrics_api") { |
| 140 sources = [ | 146 sources = [ |
| 141 "include/metrics.h", | 147 "include/metrics.h", |
| 142 ] | 148 ] |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 "//testing/gtest", | 233 "//testing/gtest", |
| 228 ] | 234 ] |
| 229 | 235 |
| 230 if (is_android) { | 236 if (is_android) { |
| 231 deps += [ "//testing/android/native_test:native_test_support" ] | 237 deps += [ "//testing/android/native_test:native_test_support" ] |
| 232 | 238 |
| 233 shard_timeout = 900 | 239 shard_timeout = 900 |
| 234 } | 240 } |
| 235 } | 241 } |
| 236 } | 242 } |
| OLD | NEW |