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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 += [ ":xmpp_warnings_config" ] | 77 configs += [ ":xmpp_warnings_config" ] |
78 | 78 |
79 public_configs = [ | 79 public_configs = [ ":xmpp_inherited_config" ] |
80 "../..:common_inherited_config", | |
81 ":xmpp_inherited_config", | |
82 ] | |
83 | 80 |
84 if (build_with_chromium) { | 81 if (build_with_chromium) { |
85 if (is_nacl) { | 82 if (is_nacl) { |
86 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 83 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
87 } | 84 } |
88 } else { | 85 } else { |
89 sources += [ | 86 sources += [ |
90 "chatroommodule.h", | 87 "chatroommodule.h", |
91 "chatroommoduleimpl.cc", | 88 "chatroommoduleimpl.cc", |
92 "discoitemsquerytask.cc", | 89 "discoitemsquerytask.cc", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 } | 146 } |
150 } | 147 } |
151 | 148 |
152 if (is_posix && is_debug) { | 149 if (is_posix && is_debug) { |
153 # The Chromium build/common.gypi defines this for all posix | 150 # The Chromium build/common.gypi defines this for all posix |
154 # _except_ for ios & mac. We want it there as well, e.g. | 151 # _except_ for ios & mac. We want it there as well, e.g. |
155 # because ASSERT and friends trigger off of it. | 152 # because ASSERT and friends trigger off of it. |
156 defines += [ "_DEBUG" ] | 153 defines += [ "_DEBUG" ] |
157 } | 154 } |
158 } | 155 } |
OLD | NEW |