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") |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
264 "$root_out_dir/ucrtbase${vcrt_suffix}.dll", | 264 "$root_out_dir/ucrtbase${vcrt_suffix}.dll", |
265 ] | 265 ] |
266 if (is_asan) { | 266 if (is_asan) { |
267 if (current_cpu == "x64") { | 267 if (current_cpu == "x64") { |
268 data += [ "$clang_base_path/lib/clang/$clang_version/lib/windows/clang_r t.asan_dynamic-x86_64.dll" ] | 268 data += [ "$clang_base_path/lib/clang/$clang_version/lib/windows/clang_r t.asan_dynamic-x86_64.dll" ] |
269 } else { | 269 } else { |
270 data += [ "$clang_base_path/lib/clang/$clang_version/lib/windows/clang_r t.asan_dynamic-i386.dll" ] | 270 data += [ "$clang_base_path/lib/clang/$clang_version/lib/windows/clang_r t.asan_dynamic-i386.dll" ] |
271 } | 271 } |
272 } | 272 } |
273 } | 273 } |
274 if (is_nacl) { | |
275 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | |
joachim
2017/03/17 00:10:18
This is required for including "netinet/in.h" in t
| |
276 } | |
274 } | 277 } |
275 | 278 |
276 config("enable_libevent_config") { | 279 config("enable_libevent_config") { |
277 defines = [ "WEBRTC_BUILD_LIBEVENT" ] | 280 defines = [ "WEBRTC_BUILD_LIBEVENT" ] |
278 } | 281 } |
279 | 282 |
280 rtc_static_library("rtc_task_queue") { | 283 rtc_static_library("rtc_task_queue") { |
281 public_deps = [ | 284 public_deps = [ |
282 ":rtc_base_approved", | 285 ":rtc_base_approved", |
283 ] | 286 ] |
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
881 | 884 |
882 if (is_android) { | 885 if (is_android) { |
883 android_library("base_java") { | 886 android_library("base_java") { |
884 java_files = [ | 887 java_files = [ |
885 "java/src/org/webrtc/Logging.java", | 888 "java/src/org/webrtc/Logging.java", |
886 "java/src/org/webrtc/Size.java", | 889 "java/src/org/webrtc/Size.java", |
887 "java/src/org/webrtc/ThreadUtils.java", | 890 "java/src/org/webrtc/ThreadUtils.java", |
888 ] | 891 ] |
889 } | 892 } |
890 } | 893 } |
OLD | NEW |