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 } | |
273 } | 269 } |
274 } | 270 } |
275 | 271 |
276 template("rtc_source_set") { | 272 template("rtc_source_set") { |
277 source_set(target_name) { | 273 source_set(target_name) { |
278 forward_variables_from(invoker, | 274 forward_variables_from(invoker, |
279 "*", | 275 "*", |
280 [ | 276 [ |
281 "configs", | 277 "configs", |
282 "public_configs", | 278 "public_configs", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 configs += invoker.configs | 368 configs += invoker.configs |
373 configs -= rtc_remove_configs | 369 configs -= rtc_remove_configs |
374 configs -= invoker.suppressed_configs | 370 configs -= invoker.suppressed_configs |
375 public_configs = [ rtc_common_inherited_config ] | 371 public_configs = [ rtc_common_inherited_config ] |
376 if (defined(invoker.public_configs)) { | 372 if (defined(invoker.public_configs)) { |
377 public_configs += invoker.public_configs | 373 public_configs += invoker.public_configs |
378 } | 374 } |
379 } | 375 } |
380 } | 376 } |
381 } | 377 } |
OLD | NEW |