| 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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 "linux.cc", | 661 "linux.cc", |
| 662 "linux.h", | 662 "linux.h", |
| 663 ] | 663 ] |
| 664 } | 664 } |
| 665 | 665 |
| 666 if (is_nacl) { | 666 if (is_nacl) { |
| 667 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 667 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 668 defines += [ "timezone=_timezone" ] | 668 defines += [ "timezone=_timezone" ] |
| 669 sources -= [ "ifaddrs_converter.cc" ] | 669 sources -= [ "ifaddrs_converter.cc" ] |
| 670 } | 670 } |
| 671 if (is_clang) { | 671 if (is_win && is_clang) { |
| 672 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 672 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 673 configs -= [ "//build/config/clang:find_bad_constructs" ] | 673 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 674 } | 674 } |
| 675 } | 675 } |
| 676 | 676 |
| 677 source_set("gtest_prod") { | 677 source_set("gtest_prod") { |
| 678 sources = [ | 678 sources = [ |
| 679 "gtest_prod_util.h", | 679 "gtest_prod_util.h", |
| 680 ] | 680 ] |
| 681 } | 681 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 "java/src/org/webrtc/Logging.java", | 743 "java/src/org/webrtc/Logging.java", |
| 744 "java/src/org/webrtc/Size.java", | 744 "java/src/org/webrtc/Size.java", |
| 745 "java/src/org/webrtc/ThreadUtils.java", | 745 "java/src/org/webrtc/ThreadUtils.java", |
| 746 ] | 746 ] |
| 747 | 747 |
| 748 deps = [ | 748 deps = [ |
| 749 "//base:base_java", | 749 "//base:base_java", |
| 750 ] | 750 ] |
| 751 } | 751 } |
| 752 } | 752 } |
| OLD | NEW |