OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 "../../base:rtc_base", | 36 "../../base:rtc_base", |
37 ] | 37 ] |
38 | 38 |
39 if (rtc_build_expat) { | 39 if (rtc_build_expat) { |
40 deps += [ "//third_party/expat" ] | 40 deps += [ "//third_party/expat" ] |
41 public_deps = [ | 41 public_deps = [ |
42 "//third_party/expat", | 42 "//third_party/expat", |
43 ] | 43 ] |
44 } | 44 } |
45 | 45 |
46 public_configs = [ "../..:common_inherited_config" ] | |
47 | |
48 if (!build_with_chromium && is_clang) { | 46 if (!build_with_chromium && is_clang) { |
49 # Suppress warnings from Chrome's Clang plugins. | 47 # Suppress warnings from Chrome's Clang plugins. |
50 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 48 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
51 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 49 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
52 } | 50 } |
53 } | 51 } |
OLD | NEW |