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/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 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 deps = [ | 679 deps = [ |
675 ":rtc_base", | 680 ":rtc_base", |
676 "../test:field_trial", | 681 "../test:field_trial", |
677 "../test:test_support", | 682 "../test:test_support", |
678 ] | 683 ] |
679 public_deps = [ | 684 public_deps = [ |
680 "//testing/gtest", | 685 "//testing/gtest", |
681 ] | 686 ] |
682 } | 687 } |
683 } | 688 } |
| 689 |
| 690 if (is_android) { |
| 691 android_library("base_java") { |
| 692 java_files = [ |
| 693 "java/src/org/webrtc/Logging.java", |
| 694 "java/src/org/webrtc/Size.java", |
| 695 "java/src/org/webrtc/ThreadUtils.java", |
| 696 ] |
| 697 |
| 698 deps = [ |
| 699 "//base:base_java", |
| 700 ] |
| 701 } |
| 702 } |
OLD | NEW |