| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 10 import("//third_party/WebKit/Source/config.gni") | 10 import("//third_party/WebKit/Source/config.gni") |
| (...skipping 1800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1811 | 1811 |
| 1812 data_deps = [ | 1812 data_deps = [ |
| 1813 ":blink_platform_unittests_data", | 1813 ":blink_platform_unittests_data", |
| 1814 ] | 1814 ] |
| 1815 | 1815 |
| 1816 defines = [ "INSIDE_BLINK" ] | 1816 defines = [ "INSIDE_BLINK" ] |
| 1817 | 1817 |
| 1818 include_dirs = [ "$root_gen_dir/blink" ] | 1818 include_dirs = [ "$root_gen_dir/blink" ] |
| 1819 } | 1819 } |
| 1820 | 1820 |
| 1821 test("image_decode_bench") { |
| 1822 visibility = [] # Allow re-assignment of list. |
| 1823 visibility = [ "*" ] |
| 1824 |
| 1825 sources = [ |
| 1826 "testing/ImageDecodeBench.cpp", |
| 1827 ] |
| 1828 |
| 1829 deps = [ |
| 1830 ":blink_common", |
| 1831 ":platform", |
| 1832 "//third_party/WebKit/Source/wtf", |
| 1833 ] |
| 1834 |
| 1835 configs += [ |
| 1836 "//third_party/WebKit/Source/wtf:wtf_config", |
| 1837 "//third_party/WebKit/Source:config", |
| 1838 ] |
| 1839 |
| 1840 defines = [ "INSIDE_BLINK" ] |
| 1841 } |
| 1842 |
| 1821 test("blink_platform_perftests") { | 1843 test("blink_platform_perftests") { |
| 1822 sources = [ | 1844 sources = [ |
| 1823 "scheduler/base/task_queue_manager_delegate_for_test.cc", | 1845 "scheduler/base/task_queue_manager_delegate_for_test.cc", |
| 1824 "scheduler/base/task_queue_manager_delegate_for_test.h", | 1846 "scheduler/base/task_queue_manager_delegate_for_test.h", |
| 1825 "scheduler/base/task_queue_manager_perftest.cc", | 1847 "scheduler/base/task_queue_manager_perftest.cc", |
| 1826 ] | 1848 ] |
| 1827 | 1849 |
| 1828 configs += [ | 1850 configs += [ |
| 1829 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1851 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 1830 "//build/config/compiler:no_size_t_to_int_warning", | 1852 "//build/config/compiler:no_size_t_to_int_warning", |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1990 "//third_party/WebKit/Source:inside_blink", | 2012 "//third_party/WebKit/Source:inside_blink", |
| 1991 ] | 2013 ] |
| 1992 | 2014 |
| 1993 deps = [ | 2015 deps = [ |
| 1994 ":test_support", | 2016 ":test_support", |
| 1995 "//cc/surfaces:surface_id", | 2017 "//cc/surfaces:surface_id", |
| 1996 "//testing/gmock", | 2018 "//testing/gmock", |
| 1997 "//testing/gtest", | 2019 "//testing/gtest", |
| 1998 ] | 2020 ] |
| 1999 } | 2021 } |
| OLD | NEW |