Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: webrtc/common_audio/BUILD.gn

Issue 2882673002: Moving compile_assert_c.h to webrtc/base (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/compile_assert_c.h ('k') | webrtc/common_audio/signal_processing/include/spl_inl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/arm.gni") 9 import("//build/config/arm.gni")
10 import("../webrtc.gni") 10 import("../webrtc.gni")
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 } 197 }
198 198
199 if (is_win) { 199 if (is_win) {
200 cflags = [ "/wd4334" ] # Ignore warning on shift operator promotion. 200 cflags = [ "/wd4334" ] # Ignore warning on shift operator promotion.
201 } 201 }
202 202
203 public_configs = [ ":common_audio_config" ] 203 public_configs = [ ":common_audio_config" ]
204 deps = [ 204 deps = [
205 ":common_audio_cc", 205 ":common_audio_cc",
206 "..:webrtc_common", 206 "..:webrtc_common",
207 "../base:compile_assert_c",
207 "../base:rtc_base_approved", 208 "../base:rtc_base_approved",
208 "../system_wrappers:system_wrappers", 209 "../system_wrappers:system_wrappers",
209 ] 210 ]
210 } 211 }
211 212
212 rtc_source_set("common_audio_cc") { 213 rtc_source_set("common_audio_cc") {
213 visibility = [ ":*" ] # Only targets in this file can depend on this. 214 visibility = [ ":*" ] # Only targets in this file can depend on this.
214 sources = [ 215 sources = [
215 "signal_processing/dot_product_with_scale.cc", 216 "signal_processing/dot_product_with_scale.cc",
216 "signal_processing/dot_product_with_scale.h", 217 "signal_processing/dot_product_with_scale.h",
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 "//testing/gtest", 404 "//testing/gtest",
404 ] 405 ]
405 406
406 if (is_android) { 407 if (is_android) {
407 deps += [ "//testing/android/native_test:native_test_support" ] 408 deps += [ "//testing/android/native_test:native_test_support" ]
408 409
409 shard_timeout = 900 410 shard_timeout = 900
410 } 411 }
411 } 412 }
412 } 413 }
OLDNEW
« no previous file with comments | « webrtc/base/compile_assert_c.h ('k') | webrtc/common_audio/signal_processing/include/spl_inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698