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

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

Issue 1430023005: Remove ICU usage from jni_helpers.cc. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Once more with feeling. Created 5 years, 1 month 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/build/common.gypi ('k') | webrtc/examples/android/media_demo/jni/jni_helpers.cc » ('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("//build/config/mips.gni") 10 import("//build/config/mips.gni")
(...skipping 18 matching lines...) Expand all
29 29
30 # Enable data logging. Produces text files with data logged within engines 30 # Enable data logging. Produces text files with data logged within engines
31 # which can be easily parsed for offline processing. 31 # which can be easily parsed for offline processing.
32 rtc_enable_data_logging = false 32 rtc_enable_data_logging = false
33 33
34 # Enables the use of protocol buffers for debug recordings. 34 # Enables the use of protocol buffers for debug recordings.
35 rtc_enable_protobuf = true 35 rtc_enable_protobuf = true
36 36
37 # Disable these to not build components which can be externally provided. 37 # Disable these to not build components which can be externally provided.
38 rtc_build_expat = true 38 rtc_build_expat = true
39 rtc_build_icu = true
40 rtc_build_json = true 39 rtc_build_json = true
41 rtc_build_libjpeg = true 40 rtc_build_libjpeg = true
42 rtc_build_libvpx = true 41 rtc_build_libvpx = true
43 rtc_build_libyuv = true 42 rtc_build_libyuv = true
44 rtc_build_openmax_dl = true 43 rtc_build_openmax_dl = true
45 rtc_build_opus = true 44 rtc_build_opus = true
46 rtc_build_ssl = true 45 rtc_build_ssl = true
47 rtc_build_vp9 = true 46 rtc_build_vp9 = true
48 47
49 # Disable by default. 48 # Disable by default.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 # Enable this to use HW H.264 encoder/decoder on iOS PeerConnections. 91 # Enable this to use HW H.264 encoder/decoder on iOS PeerConnections.
93 # Enabling this may break interop with Android clients that support H264. 92 # Enabling this may break interop with Android clients that support H264.
94 rtc_use_objc_h264 = false 93 rtc_use_objc_h264 = false
95 } 94 }
96 95
97 # Make it possible to provide custom locations for some libraries (move these 96 # Make it possible to provide custom locations for some libraries (move these
98 # up into declare_args should we need to actually use them for the GN build). 97 # up into declare_args should we need to actually use them for the GN build).
99 rtc_libvpx_dir = "//third_party/libvpx_new" 98 rtc_libvpx_dir = "//third_party/libvpx_new"
100 rtc_libyuv_dir = "//third_party/libyuv" 99 rtc_libyuv_dir = "//third_party/libyuv"
101 rtc_opus_dir = "//third_party/opus" 100 rtc_opus_dir = "//third_party/opus"
OLDNEW
« no previous file with comments | « webrtc/build/common.gypi ('k') | webrtc/examples/android/media_demo/jni/jni_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698