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

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

Issue 2995413002: Delete Filesystem::GetTemporaryFolder. (Closed)
Patch Set: Created 3 years, 4 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 | « no previous file | webrtc/rtc_base/applefilesystem.mm » ('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/crypto.gni") 9 import("//build/config/crypto.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 "..:webrtc_common", 407 "..:webrtc_common",
408 ] 408 ]
409 public_deps = [ 409 public_deps = [
410 ":rtc_base_approved", 410 ":rtc_base_approved",
411 ] 411 ]
412 public_configs = [] 412 public_configs = []
413 413
414 all_dependent_configs = [ ":rtc_base_all_dependent_config" ] 414 all_dependent_configs = [ ":rtc_base_all_dependent_config" ]
415 415
416 sources = [ 416 sources = [
417 "applefilesystem.mm",
418 "asyncinvoker-inl.h", 417 "asyncinvoker-inl.h",
419 "asyncinvoker.cc", 418 "asyncinvoker.cc",
420 "asyncinvoker.h", 419 "asyncinvoker.h",
421 "asyncpacketsocket.cc", 420 "asyncpacketsocket.cc",
422 "asyncpacketsocket.h", 421 "asyncpacketsocket.h",
423 "asyncresolverinterface.cc", 422 "asyncresolverinterface.cc",
424 "asyncresolverinterface.h", 423 "asyncresolverinterface.h",
425 "asyncsocket.cc", 424 "asyncsocket.cc",
426 "asyncsocket.h", 425 "asyncsocket.h",
427 "asynctcpsocket.cc", 426 "asynctcpsocket.cc",
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 # Skip restricting visibility on mobile platforms since the tests on those 962 # Skip restricting visibility on mobile platforms since the tests on those
964 # gets additional generated targets which would require many lines here to 963 # gets additional generated targets which would require many lines here to
965 # cover (which would be confusing to read and hard to maintain). 964 # cover (which would be confusing to read and hard to maintain).
966 if (!is_android && !is_ios) { 965 if (!is_android && !is_ios) {
967 # TODO(kjellander): Reenable after finishing https://bugs.webrtc.org/7634. 966 # TODO(kjellander): Reenable after finishing https://bugs.webrtc.org/7634.
968 #visibility = [ "..:rtc_unittests" ] 967 #visibility = [ "..:rtc_unittests" ]
969 } 968 }
970 sources = [ 969 sources = [
971 "callback_unittest.cc", 970 "callback_unittest.cc",
972 "crc32_unittest.cc", 971 "crc32_unittest.cc",
973 "fileutils_unittest.cc",
974 "helpers_unittest.cc", 972 "helpers_unittest.cc",
975 "httpbase_unittest.cc", 973 "httpbase_unittest.cc",
976 "httpcommon_unittest.cc", 974 "httpcommon_unittest.cc",
977 "httpserver_unittest.cc", 975 "httpserver_unittest.cc",
978 "ipaddress_unittest.cc", 976 "ipaddress_unittest.cc",
979 "memory_usage_unittest.cc", 977 "memory_usage_unittest.cc",
980 "messagedigest_unittest.cc", 978 "messagedigest_unittest.cc",
981 "messagequeue_unittest.cc", 979 "messagequeue_unittest.cc",
982 "nat_unittest.cc", 980 "nat_unittest.cc",
983 "network_unittest.cc", 981 "network_unittest.cc",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 if (is_android) { 1029 if (is_android) {
1032 android_library("base_java") { 1030 android_library("base_java") {
1033 java_files = [ 1031 java_files = [
1034 "java/src/org/webrtc/ContextUtils.java", 1032 "java/src/org/webrtc/ContextUtils.java",
1035 "java/src/org/webrtc/Logging.java", 1033 "java/src/org/webrtc/Logging.java",
1036 "java/src/org/webrtc/Size.java", 1034 "java/src/org/webrtc/Size.java",
1037 "java/src/org/webrtc/ThreadUtils.java", 1035 "java/src/org/webrtc/ThreadUtils.java",
1038 ] 1036 ]
1039 } 1037 }
1040 } 1038 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/rtc_base/applefilesystem.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698