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

Side by Side Diff: webrtc/modules/utility/BUILD.gn

Issue 2300413002: GN Templates: Move common_config to the template. (Closed)
Patch Set: Add TODOs + tracking bugs. Created 4 years, 3 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/modules/rtp_rtcp/BUILD.gn ('k') | webrtc/modules/video_capture/BUILD.gn » ('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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
(...skipping 10 matching lines...) Expand all
21 "source/coder.h", 21 "source/coder.h",
22 "source/file_player.cc", 22 "source/file_player.cc",
23 "source/file_recorder.cc", 23 "source/file_recorder.cc",
24 "source/helpers_android.cc", 24 "source/helpers_android.cc",
25 "source/helpers_ios.mm", 25 "source/helpers_ios.mm",
26 "source/jvm_android.cc", 26 "source/jvm_android.cc",
27 "source/process_thread_impl.cc", 27 "source/process_thread_impl.cc",
28 "source/process_thread_impl.h", 28 "source/process_thread_impl.h",
29 ] 29 ]
30 30
31 configs += [ "../..:common_config" ]
32 public_configs = [ "../..:common_inherited_config" ] 31 public_configs = [ "../..:common_inherited_config" ]
33 32
34 if (is_clang) { 33 if (is_clang) {
35 # Suppress warnings from Chrome's Clang plugins. 34 # Suppress warnings from Chrome's Clang plugins.
36 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 35 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
37 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 36 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
38 } 37 }
39 38
40 if (is_ios) { 39 if (is_ios) {
41 libs = [ "AVFoundation.framework" ] 40 libs = [ "AVFoundation.framework" ]
42 } 41 }
43 42
44 deps = [ 43 deps = [
45 "../..:webrtc_common", 44 "../..:webrtc_common",
46 "../../base:rtc_task_queue", 45 "../../base:rtc_task_queue",
47 "../../common_audio", 46 "../../common_audio",
48 "../../system_wrappers", 47 "../../system_wrappers",
49 "../audio_coding", 48 "../audio_coding",
50 "../media_file", 49 "../media_file",
51 ] 50 ]
52 } 51 }
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/BUILD.gn ('k') | webrtc/modules/video_capture/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698