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 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. | 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. |
10 | 10 |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "-fno-builtin-cosf", | 164 "-fno-builtin-cosf", |
165 "-fno-builtin-sinf", | 165 "-fno-builtin-sinf", |
166 ] | 166 ] |
167 } | 167 } |
168 } | 168 } |
169 | 169 |
170 source_set("webrtc") { | 170 source_set("webrtc") { |
171 sources = [ | 171 sources = [ |
172 "call.h", | 172 "call.h", |
173 "config.h", | 173 "config.h", |
174 "experiments.h", | |
175 "frame_callback.h", | 174 "frame_callback.h", |
176 "transport.h", | 175 "transport.h", |
177 ] | 176 ] |
178 | 177 |
179 configs += [ ":common_config" ] | 178 configs += [ ":common_config" ] |
180 public_configs = [ ":common_inherited_config" ] | 179 public_configs = [ ":common_inherited_config" ] |
181 | 180 |
182 deps = [ | 181 deps = [ |
183 ":webrtc_common", | 182 ":webrtc_common", |
184 "base:rtc_base", | 183 "base:rtc_base", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 | 232 |
234 configs += [ ":common_config" ] | 233 configs += [ ":common_config" ] |
235 public_configs = [ ":common_inherited_config" ] | 234 public_configs = [ ":common_inherited_config" ] |
236 } | 235 } |
237 | 236 |
238 source_set("gtest_prod") { | 237 source_set("gtest_prod") { |
239 sources = [ | 238 sources = [ |
240 "test/testsupport/gtest_prod_util.h", | 239 "test/testsupport/gtest_prod_util.h", |
241 ] | 240 ] |
242 } | 241 } |
OLD | NEW |