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

Side by Side Diff: webrtc/build/webrtc.gni

Issue 2548713003: Refactor fileutils.cc/h and fileutils_unittests.cc into their own targets. (Closed)
Patch Set: Created 4 years 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 | « no previous file | webrtc/test/BUILD.gn » ('j') | webrtc/test/BUILD.gn » ('J')
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("//build/config/features.gni") 10 import("//build/config/features.gni")
11 import("//build/config/mips.gni") 11 import("//build/config/mips.gni")
12 import("//build/config/sanitizers/sanitizers.gni") 12 import("//build/config/sanitizers/sanitizers.gni")
13 import("//build_overrides/build.gni") 13 import("//build_overrides/build.gni")
14 import("//testing/test.gni") 14 import("//testing/test.gni")
15 15
16 declare_args() { 16 declare_args() {
17 # When set to false, we could replace this with a downstream-specific
18 # implementation
19 rtc_use_default_fileutils = true
20
17 # Disable this to avoid building the Opus audio codec. 21 # Disable this to avoid building the Opus audio codec.
18 rtc_include_opus = true 22 rtc_include_opus = true
19 23
20 # Enable this to let the Opus audio codec change complexity on the fly. 24 # Enable this to let the Opus audio codec change complexity on the fly.
21 rtc_opus_variable_complexity = false 25 rtc_opus_variable_complexity = false
22 26
23 # Disable to use absolute header paths for some libraries. 27 # Disable to use absolute header paths for some libraries.
24 rtc_relative_path = true 28 rtc_relative_path = true
25 29
26 # Used to specify an external Jsoncpp include path when not compiling the 30 # Used to specify an external Jsoncpp include path when not compiling the
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 ]) 314 ])
311 configs += invoker.configs 315 configs += invoker.configs
312 configs -= rtc_remove_configs 316 configs -= rtc_remove_configs
313 configs -= invoker.suppressed_configs 317 configs -= invoker.suppressed_configs
314 public_configs = [ rtc_common_inherited_config ] 318 public_configs = [ rtc_common_inherited_config ]
315 if (defined(invoker.public_configs)) { 319 if (defined(invoker.public_configs)) {
316 public_configs += invoker.public_configs 320 public_configs += invoker.public_configs
317 } 321 }
318 } 322 }
319 } 323 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/test/BUILD.gn » ('j') | webrtc/test/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698