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" ] | |
276 } | |
277 } | 274 } |
278 | 275 |
279 config("enable_libevent_config") { | 276 config("enable_libevent_config") { |
280 defines = [ "WEBRTC_BUILD_LIBEVENT" ] | 277 defines = [ "WEBRTC_BUILD_LIBEVENT" ] |
281 } | 278 } |
282 | 279 |
283 rtc_static_library("rtc_task_queue") { | 280 rtc_static_library("rtc_task_queue") { |
284 public_deps = [ | 281 public_deps = [ |
285 ":rtc_base_approved", | 282 ":rtc_base_approved", |
286 ] | 283 ] |
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 | 881 |
885 if (is_android) { | 882 if (is_android) { |
886 android_library("base_java") { | 883 android_library("base_java") { |
887 java_files = [ | 884 java_files = [ |
888 "java/src/org/webrtc/Logging.java", | 885 "java/src/org/webrtc/Logging.java", |
889 "java/src/org/webrtc/Size.java", | 886 "java/src/org/webrtc/Size.java", |
890 "java/src/org/webrtc/ThreadUtils.java", | 887 "java/src/org/webrtc/ThreadUtils.java", |
891 ] | 888 ] |
892 } | 889 } |
893 } | 890 } |
OLD | NEW |