Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: webrtc/webrtc.gni

Issue 2903253004: Reland of Removes usage of native base::android::GetApplicationContext() (Closed)
Patch Set: Deprecated comment. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/test/android/org/webrtc/native_test/RTCNativeUnitTestActivity.java ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 (!build_with_chromium && 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
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 }
OLDNEW
« no previous file with comments | « webrtc/test/android/org/webrtc/native_test/RTCNativeUnitTestActivity.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698