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/arm.gni") | 9 import("//build/config/arm.gni") |
10 import("//build/config/features.gni") | 10 import("//build/config/features.gni") |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 "public_configs", | 259 "public_configs", |
260 "suppressed_configs", | 260 "suppressed_configs", |
261 ]) | 261 ]) |
262 configs += invoker.configs | 262 configs += invoker.configs |
263 configs -= rtc_remove_configs | 263 configs -= rtc_remove_configs |
264 configs -= invoker.suppressed_configs | 264 configs -= invoker.suppressed_configs |
265 public_configs = [ rtc_common_inherited_config ] | 265 public_configs = [ rtc_common_inherited_config ] |
266 if (defined(invoker.public_configs)) { | 266 if (defined(invoker.public_configs)) { |
267 public_configs += invoker.public_configs | 267 public_configs += invoker.public_configs |
268 } | 268 } |
| 269 if (is_android) { |
| 270 android_manifest = "//webrtc/test/android/AndroidManifest.xml" |
| 271 deps += [ "//webrtc/test:native_test_java" ] |
| 272 } |
269 } | 273 } |
270 } | 274 } |
271 | 275 |
272 template("rtc_source_set") { | 276 template("rtc_source_set") { |
273 source_set(target_name) { | 277 source_set(target_name) { |
274 forward_variables_from(invoker, | 278 forward_variables_from(invoker, |
275 "*", | 279 "*", |
276 [ | 280 [ |
277 "configs", | 281 "configs", |
278 "public_configs", | 282 "public_configs", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 configs += invoker.configs | 372 configs += invoker.configs |
369 configs -= rtc_remove_configs | 373 configs -= rtc_remove_configs |
370 configs -= invoker.suppressed_configs | 374 configs -= invoker.suppressed_configs |
371 public_configs = [ rtc_common_inherited_config ] | 375 public_configs = [ rtc_common_inherited_config ] |
372 if (defined(invoker.public_configs)) { | 376 if (defined(invoker.public_configs)) { |
373 public_configs += invoker.public_configs | 377 public_configs += invoker.public_configs |
374 } | 378 } |
375 } | 379 } |
376 } | 380 } |
377 } | 381 } |
OLD | NEW |