| 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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 "testbase64.h", | 550 "testbase64.h", |
| 551 "testclient.cc", | 551 "testclient.cc", |
| 552 "testclient.h", | 552 "testclient.h", |
| 553 "transformadapter.cc", | 553 "transformadapter.cc", |
| 554 "transformadapter.h", | 554 "transformadapter.h", |
| 555 "virtualsocketserver.cc", | 555 "virtualsocketserver.cc", |
| 556 "virtualsocketserver.h", | 556 "virtualsocketserver.h", |
| 557 "window.h", | 557 "window.h", |
| 558 ] | 558 ] |
| 559 | 559 |
| 560 if (is_linux) { | |
| 561 sources += [ | |
| 562 "linuxfdwalk.c", | |
| 563 "linuxfdwalk.h", | |
| 564 ] | |
| 565 } | |
| 566 | |
| 567 if (is_posix) { | 560 if (is_posix) { |
| 568 sources += [ | 561 sources += [ |
| 569 "latebindingsymboltable.cc", | 562 "latebindingsymboltable.cc", |
| 570 "latebindingsymboltable.h", | 563 "latebindingsymboltable.h", |
| 571 ] | 564 ] |
| 572 } | 565 } |
| 573 | 566 |
| 574 if (is_win) { | 567 if (is_win) { |
| 575 sources += [ | 568 sources += [ |
| 576 "diskcache_win32.cc", | 569 "diskcache_win32.cc", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 "unixfilesystem.h", | 683 "unixfilesystem.h", |
| 691 ] | 684 ] |
| 692 if (is_debug) { | 685 if (is_debug) { |
| 693 # The Chromium build/common.gypi defines this for all posix | 686 # The Chromium build/common.gypi defines this for all posix |
| 694 # _except_ for ios & mac. We want it there as well, e.g. | 687 # _except_ for ios & mac. We want it there as well, e.g. |
| 695 # because ASSERT and friends trigger off of it. | 688 # because ASSERT and friends trigger off of it. |
| 696 defines += [ "_DEBUG" ] | 689 defines += [ "_DEBUG" ] |
| 697 } | 690 } |
| 698 } | 691 } |
| 699 | 692 |
| 700 if (is_linux || is_android) { | |
| 701 sources += [ | |
| 702 "linux.cc", | |
| 703 "linux.h", | |
| 704 ] | |
| 705 } | |
| 706 | |
| 707 if (is_nacl) { | 693 if (is_nacl) { |
| 708 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 694 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 709 defines += [ "timezone=_timezone" ] | 695 defines += [ "timezone=_timezone" ] |
| 710 sources -= [ "ifaddrs_converter.cc" ] | 696 sources -= [ "ifaddrs_converter.cc" ] |
| 711 } | 697 } |
| 712 if (is_win && is_clang) { | 698 if (is_win && is_clang) { |
| 713 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 699 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 714 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 700 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 715 } | 701 } |
| 716 } | 702 } |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 "java/src/org/webrtc/Logging.java", | 765 "java/src/org/webrtc/Logging.java", |
| 780 "java/src/org/webrtc/Size.java", | 766 "java/src/org/webrtc/Size.java", |
| 781 "java/src/org/webrtc/ThreadUtils.java", | 767 "java/src/org/webrtc/ThreadUtils.java", |
| 782 ] | 768 ] |
| 783 | 769 |
| 784 deps = [ | 770 deps = [ |
| 785 "//base:base_java", | 771 "//base:base_java", |
| 786 ] | 772 ] |
| 787 } | 773 } |
| 788 } | 774 } |
| OLD | NEW |