OLD | NEW |
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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
761 "//ui/ozone:ozone_base", | 761 "//ui/ozone:ozone_base", |
762 ] | 762 ] |
763 } else { | 763 } else { |
764 sources -= | 764 sources -= |
765 [ "../browser/compositor/software_output_device_ozone_unittest.cc" ] | 765 [ "../browser/compositor/software_output_device_ozone_unittest.cc" ] |
766 } | 766 } |
767 | 767 |
768 if (is_mac && use_openssl) { | 768 if (is_mac && use_openssl) { |
769 deps += [ "//third_party/boringssl" ] | 769 deps += [ "//third_party/boringssl" ] |
770 } | 770 } |
| 771 |
| 772 if (use_openh264) { |
| 773 sources += [ "../browser/media/openh264_unittests.cc" ] |
| 774 deps += [ "//third_party/openh264/testing:openh264_testing" ] |
| 775 } |
771 } | 776 } |
772 | 777 |
773 test("content_perftests") { | 778 test("content_perftests") { |
774 sources = [ | 779 sources = [ |
775 "../browser/renderer_host/input/input_router_impl_perftest.cc", | 780 "../browser/renderer_host/input/input_router_impl_perftest.cc", |
776 "../common/cc_messages_perftest.cc", | 781 "../common/cc_messages_perftest.cc", |
777 "../test/run_all_perftests.cc", | 782 "../test/run_all_perftests.cc", |
778 ] | 783 ] |
779 deps = [ | 784 deps = [ |
780 "//base/allocator", | 785 "//base/allocator", |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 "//gpu/blink", | 859 "//gpu/blink", |
855 "//testing/gtest", | 860 "//testing/gtest", |
856 "//third_party/WebKit/public:blink", | 861 "//third_party/WebKit/public:blink", |
857 "//ui/base", | 862 "//ui/base", |
858 "//ui/gfx", | 863 "//ui/gfx", |
859 "//ui/gfx/geometry", | 864 "//ui/gfx/geometry", |
860 "//ui/gl", | 865 "//ui/gl", |
861 "//ui/gl:test_support", | 866 "//ui/gl:test_support", |
862 ] | 867 ] |
863 } | 868 } |
OLD | NEW |