| 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 if (is_android) { | 13 if (is_android) { |
| 14 import("//build/config/android/config.gni") | 14 import("//build/config/android/config.gni") |
| 15 import("//build/config/android/rules.gni") | 15 import("//build/config/android/rules.gni") |
| 16 } | 16 } |
| 17 | 17 |
| 18 config("rtc_base_approved_all_dependent_config") { | 18 config("rtc_base_approved_all_dependent_config") { |
| 19 if (is_mac && !build_with_chromium) { | 19 if (is_mac && !build_with_chromium) { |
| 20 libs = [ "Foundation.framework" ] # needed for logging_mac.mm | 20 libs = [ "Foundation.framework" ] # needed for logging_mac.mm |
| 21 } | 21 } |
| 22 } | 22 } |
| 23 | 23 |
| 24 config("rtc_base_config") { | 24 config("rtc_base_config") { |
| 25 include_dirs = [ | |
| 26 "//third_party/jsoncpp/overrides/include", | |
| 27 "//third_party/jsoncpp/source/include", | |
| 28 ] | |
| 29 | |
| 30 defines = [ | 25 defines = [ |
| 31 "FEATURE_ENABLE_SSL", | 26 "FEATURE_ENABLE_SSL", |
| 32 "LOGGING=1", | 27 "LOGGING=1", |
| 33 ] | 28 ] |
| 34 } | 29 } |
| 35 | 30 |
| 36 config("rtc_base_chromium_config") { | 31 config("rtc_base_chromium_config") { |
| 37 defines = [ "NO_MAIN_THREAD_WRAPPING" ] | 32 defines = [ "NO_MAIN_THREAD_WRAPPING" ] |
| 38 } | 33 } |
| 39 | 34 |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 "java/src/org/webrtc/Logging.java", | 738 "java/src/org/webrtc/Logging.java", |
| 744 "java/src/org/webrtc/Size.java", | 739 "java/src/org/webrtc/Size.java", |
| 745 "java/src/org/webrtc/ThreadUtils.java", | 740 "java/src/org/webrtc/ThreadUtils.java", |
| 746 ] | 741 ] |
| 747 | 742 |
| 748 deps = [ | 743 deps = [ |
| 749 "//base:base_java", | 744 "//base:base_java", |
| 750 ] | 745 ] |
| 751 } | 746 } |
| 752 } | 747 } |
| OLD | NEW |