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

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

Issue 2515443003: Move FirewallSocketServer to test code. (Closed)
Patch Set: Created 4 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
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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 "crc32.cc", 403 "crc32.cc",
404 "crc32.h", 404 "crc32.h",
405 "cryptstring.cc", 405 "cryptstring.cc",
406 "cryptstring.h", 406 "cryptstring.h",
407 "diskcache.cc", 407 "diskcache.cc",
408 "diskcache.h", 408 "diskcache.h",
409 "filerotatingstream.cc", 409 "filerotatingstream.cc",
410 "filerotatingstream.h", 410 "filerotatingstream.h",
411 "fileutils.cc", 411 "fileutils.cc",
412 "fileutils.h", 412 "fileutils.h",
413 "firewallsocketserver.cc",
414 "firewallsocketserver.h",
415 "flags.cc", 413 "flags.cc",
416 "flags.h", 414 "flags.h",
417 "gunit_prod.h", 415 "gunit_prod.h",
418 "helpers.cc", 416 "helpers.cc",
419 "helpers.h", 417 "helpers.h",
420 "httpbase.cc", 418 "httpbase.cc",
421 "httpbase.h", 419 "httpbase.h",
422 "httpclient.cc", 420 "httpclient.cc",
423 "httpclient.h", 421 "httpclient.h",
424 "httpcommon-inl.h", 422 "httpcommon-inl.h",
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 config("rtc_base_tests_utils_warnings_config") { 756 config("rtc_base_tests_utils_warnings_config") {
759 if (is_win && is_clang) { 757 if (is_win && is_clang) {
760 cflags = [ 758 cflags = [
761 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6270 759 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6270
762 "-Wno-reorder", 760 "-Wno-reorder",
763 "-Wno-sign-compare", 761 "-Wno-sign-compare",
764 ] 762 ]
765 } 763 }
766 } 764 }
767 765
768 rtc_source_set("rtc_base_tests_utils") { 766 rtc_source_set("rtc_base_tests_utils") {
kjellander_webrtc 2016/11/18 13:52:40 Isn't it a lot easier to move it into this target
nisse-webrtc 2016/11/18 14:15:42 Indeed, that's a lot simpler. See new patch set.
769 testonly = true 767 testonly = true
770 sources = [ 768 sources = [
771 # Also use this as a convenient dumping ground for misc files that are 769 # Also use this as a convenient dumping ground for misc files that are
772 # included by multiple targets below. 770 # included by multiple targets below.
773 "fakeclock.cc", 771 "fakeclock.cc",
774 "fakeclock.h", 772 "fakeclock.h",
775 "fakenetwork.h", 773 "fakenetwork.h",
776 "fakesslidentity.h", 774 "fakesslidentity.h",
777 "faketaskrunner.h", 775 "faketaskrunner.h",
778 "gunit.h", 776 "gunit.h",
(...skipping 27 matching lines...) Expand all
806 "java/src/org/webrtc/Logging.java", 804 "java/src/org/webrtc/Logging.java",
807 "java/src/org/webrtc/Size.java", 805 "java/src/org/webrtc/Size.java",
808 "java/src/org/webrtc/ThreadUtils.java", 806 "java/src/org/webrtc/ThreadUtils.java",
809 ] 807 ]
810 808
811 deps = [ 809 deps = [
812 "//base:base_java", 810 "//base:base_java",
813 ] 811 ]
814 } 812 }
815 } 813 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698