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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 "stream.cc", | 400 "stream.cc", |
401 "stream.h", | 401 "stream.h", |
402 "task.cc", | 402 "task.cc", |
403 "task.h", | 403 "task.h", |
404 "taskparent.cc", | 404 "taskparent.cc", |
405 "taskparent.h", | 405 "taskparent.h", |
406 "taskrunner.cc", | 406 "taskrunner.cc", |
407 "taskrunner.h", | 407 "taskrunner.h", |
408 "thread.cc", | 408 "thread.cc", |
409 "thread.h", | 409 "thread.h", |
410 "timing.cc", | |
411 "timing.h", | |
412 "urlencode.cc", | 410 "urlencode.cc", |
413 "urlencode.h", | 411 "urlencode.h", |
414 "worker.cc", | 412 "worker.cc", |
415 "worker.h", | 413 "worker.h", |
416 ] | 414 ] |
417 | 415 |
418 # TODO(henrike): issue 3307, make rtc_base build with the Chromium default | 416 # TODO(henrike): issue 3307, make rtc_base build with the Chromium default |
419 # compiler settings. | 417 # compiler settings. |
420 configs -= [ "//build/config/compiler:chromium_code" ] | 418 configs -= [ "//build/config/compiler:chromium_code" ] |
421 configs += [ "//build/config/compiler:no_chromium_code" ] | 419 configs += [ "//build/config/compiler:no_chromium_code" ] |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
699 testonly = true | 697 testonly = true |
700 sources = [ | 698 sources = [ |
701 # Also use this as a convenient dumping ground for misc files that are | 699 # Also use this as a convenient dumping ground for misc files that are |
702 # included by multiple targets below. | 700 # included by multiple targets below. |
703 "fakeclock.cc", | 701 "fakeclock.cc", |
704 "fakeclock.h", | 702 "fakeclock.h", |
705 "fakenetwork.h", | 703 "fakenetwork.h", |
706 "fakesslidentity.h", | 704 "fakesslidentity.h", |
707 "faketaskrunner.h", | 705 "faketaskrunner.h", |
708 "gunit.h", | 706 "gunit.h", |
709 "test/faketiming.h", | |
710 "testbase64.h", | 707 "testbase64.h", |
711 "testechoserver.h", | 708 "testechoserver.h", |
712 "testutils.h", | 709 "testutils.h", |
713 "timedelta.h", | 710 "timedelta.h", |
714 "unittest_main.cc", | 711 "unittest_main.cc", |
715 ] | 712 ] |
716 configs += [ | 713 configs += [ |
717 "..:common_config", | 714 "..:common_config", |
718 ":rtc_base_tests_utils_warnings_config", | 715 ":rtc_base_tests_utils_warnings_config", |
719 ] | 716 ] |
(...skipping 23 matching lines...) Expand all Loading... |
743 "java/src/org/webrtc/Logging.java", | 740 "java/src/org/webrtc/Logging.java", |
744 "java/src/org/webrtc/Size.java", | 741 "java/src/org/webrtc/Size.java", |
745 "java/src/org/webrtc/ThreadUtils.java", | 742 "java/src/org/webrtc/ThreadUtils.java", |
746 ] | 743 ] |
747 | 744 |
748 deps = [ | 745 deps = [ |
749 "//base:base_java", | 746 "//base:base_java", |
750 ] | 747 ] |
751 } | 748 } |
752 } | 749 } |
OLD | NEW |