| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "../xmllite", | 67 "../xmllite", |
| 68 ] | 68 ] |
| 69 | 69 |
| 70 if (rtc_build_expat) { | 70 if (rtc_build_expat) { |
| 71 deps += [ "//third_party/expat" ] | 71 deps += [ "//third_party/expat" ] |
| 72 public_deps = [ | 72 public_deps = [ |
| 73 "//third_party/expat", | 73 "//third_party/expat", |
| 74 ] | 74 ] |
| 75 } | 75 } |
| 76 | 76 |
| 77 configs += [ | 77 configs += [ ":xmpp_warnings_config" ] |
| 78 "../..:common_config", | |
| 79 ":xmpp_warnings_config", | |
| 80 ] | |
| 81 | 78 |
| 82 public_configs = [ | 79 public_configs = [ |
| 83 "../..:common_inherited_config", | 80 "../..:common_inherited_config", |
| 84 ":xmpp_inherited_config", | 81 ":xmpp_inherited_config", |
| 85 ] | 82 ] |
| 86 | 83 |
| 87 if (build_with_chromium) { | 84 if (build_with_chromium) { |
| 88 if (is_nacl) { | 85 if (is_nacl) { |
| 89 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 86 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 90 } | 87 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 } | 149 } |
| 153 } | 150 } |
| 154 | 151 |
| 155 if (is_posix && is_debug) { | 152 if (is_posix && is_debug) { |
| 156 # The Chromium build/common.gypi defines this for all posix | 153 # The Chromium build/common.gypi defines this for all posix |
| 157 # _except_ for ios & mac. We want it there as well, e.g. | 154 # _except_ for ios & mac. We want it there as well, e.g. |
| 158 # because ASSERT and friends trigger off of it. | 155 # because ASSERT and friends trigger off of it. |
| 159 defines += [ "_DEBUG" ] | 156 defines += [ "_DEBUG" ] |
| 160 } | 157 } |
| 161 } | 158 } |
| OLD | NEW |