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

Side by Side Diff: content/test/BUILD.gn

Issue 1446453004: Adding third_party/openh264 build files for encoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase with master 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build_overrides/v8.gni") 9 import("//build_overrides/v8.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 "//ui/ozone:ozone_base", 766 "//ui/ozone:ozone_base",
767 ] 767 ]
768 } else { 768 } else {
769 sources -= 769 sources -=
770 [ "../browser/compositor/software_output_device_ozone_unittest.cc" ] 770 [ "../browser/compositor/software_output_device_ozone_unittest.cc" ]
771 } 771 }
772 772
773 if (is_mac && use_openssl) { 773 if (is_mac && use_openssl) {
774 deps += [ "//third_party/boringssl" ] 774 deps += [ "//third_party/boringssl" ]
775 } 775 }
776
777 if (use_openh264) {
778 sources += [ "../browser/media/openh264_unittests.cc" ]
779 deps += [ "//third_party/openh264/testing:openh264_testing" ]
780 }
776 } 781 }
777 782
778 test("content_perftests") { 783 test("content_perftests") {
779 sources = [ 784 sources = [
780 "../browser/renderer_host/input/input_router_impl_perftest.cc", 785 "../browser/renderer_host/input/input_router_impl_perftest.cc",
781 "../common/cc_messages_perftest.cc", 786 "../common/cc_messages_perftest.cc",
782 "../test/run_all_perftests.cc", 787 "../test/run_all_perftests.cc",
783 ] 788 ]
784 deps = [ 789 deps = [
785 "//base/allocator", 790 "//base/allocator",
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 "//gpu/blink", 864 "//gpu/blink",
860 "//testing/gtest", 865 "//testing/gtest",
861 "//third_party/WebKit/public:blink", 866 "//third_party/WebKit/public:blink",
862 "//ui/base", 867 "//ui/base",
863 "//ui/gfx", 868 "//ui/gfx",
864 "//ui/gfx/geometry", 869 "//ui/gfx/geometry",
865 "//ui/gl", 870 "//ui/gl",
866 "//ui/gl:test_support", 871 "//ui/gl:test_support",
867 ] 872 ]
868 } 873 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698