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

Side by Side Diff: webrtc/base/BUILD.gn

Issue 2105803002: Add GN targets for AppRTC Demo on Android. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 5 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/api/BUILD.gn ('k') | webrtc/examples/BUILD.gn » ('j') | 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/crypto.gni") 9 import("//build/config/crypto.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
11 import("../build/webrtc.gni") 11 import("../build/webrtc.gni")
12 12
13 import("//build_overrides/webrtc.gni") 13 import("//build_overrides/webrtc.gni")
14 14
15 if (is_android) {
16 import("//build/config/android/config.gni")
17 import("//build/config/android/rules.gni")
18 }
19
15 config("rtc_base_approved_all_dependent_config") { 20 config("rtc_base_approved_all_dependent_config") {
16 if (is_mac && !build_with_chromium) { 21 if (is_mac && !build_with_chromium) {
17 libs = [ "Foundation.framework" ] # needed for logging_mac.mm 22 libs = [ "Foundation.framework" ] # needed for logging_mac.mm
18 } 23 }
19 } 24 }
20 25
21 config("rtc_base_config") { 26 config("rtc_base_config") {
22 include_dirs = [ 27 include_dirs = [
23 "//third_party/jsoncpp/overrides/include", 28 "//third_party/jsoncpp/overrides/include",
24 "//third_party/jsoncpp/source/include", 29 "//third_party/jsoncpp/source/include",
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 deps = [ 677 deps = [
673 ":rtc_base", 678 ":rtc_base",
674 "../test:field_trial", 679 "../test:field_trial",
675 "../test:test_support", 680 "../test:test_support",
676 ] 681 ]
677 public_deps = [ 682 public_deps = [
678 "//testing/gtest", 683 "//testing/gtest",
679 ] 684 ]
680 } 685 }
681 } 686 }
687
688 if (is_android) {
689 android_library("base_java") {
690 java_files = [
691 "java/src/org/webrtc/Logging.java",
692 "java/src/org/webrtc/Size.java",
693 "java/src/org/webrtc/ThreadUtils.java",
694 ]
695
696 deps = [
697 "//base:base_java",
698 ]
699 }
700 }
OLDNEW
« no previous file with comments | « webrtc/api/BUILD.gn ('k') | webrtc/examples/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698