Chromium Code Reviews| 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 1809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1820 | 1820 |
| 1821 data_deps = [ | 1821 data_deps = [ |
| 1822 ":blink_platform_unittests_data", | 1822 ":blink_platform_unittests_data", |
| 1823 ] | 1823 ] |
| 1824 | 1824 |
| 1825 defines = [ "INSIDE_BLINK" ] | 1825 defines = [ "INSIDE_BLINK" ] |
| 1826 | 1826 |
| 1827 include_dirs = [ "$root_gen_dir/blink" ] | 1827 include_dirs = [ "$root_gen_dir/blink" ] |
| 1828 } | 1828 } |
| 1829 | 1829 |
| 1830 test("image_decode_bench") { | |
| 1831 visibility = [] # Allow re-assignment of list. | |
| 1832 visibility = [ "*" ] | |
|
Simon Hosie
2016/11/15 01:50:00
The `visibility` value was copied from a unittest
| |
| 1833 | |
| 1834 sources = [ | |
| 1835 "testing/ImageDecodeBench.cpp", | |
| 1836 ] | |
| 1837 | |
| 1838 deps = [ | |
| 1839 ":blink_common", | |
| 1840 ":platform", | |
| 1841 "//third_party/WebKit/Source/wtf", | |
| 1842 ] | |
| 1843 | |
| 1844 configs += [ | |
| 1845 "//third_party/WebKit/Source/wtf:wtf_config", | |
| 1846 "//third_party/WebKit/Source:config", | |
| 1847 ] | |
| 1848 | |
| 1849 defines = [ "INSIDE_BLINK" ] | |
| 1850 } | |
| 1851 | |
| 1830 test("blink_platform_perftests") { | 1852 test("blink_platform_perftests") { |
| 1831 sources = [ | 1853 sources = [ |
| 1832 "scheduler/base/task_queue_manager_delegate_for_test.cc", | 1854 "scheduler/base/task_queue_manager_delegate_for_test.cc", |
| 1833 "scheduler/base/task_queue_manager_delegate_for_test.h", | 1855 "scheduler/base/task_queue_manager_delegate_for_test.h", |
| 1834 "scheduler/base/task_queue_manager_perftest.cc", | 1856 "scheduler/base/task_queue_manager_perftest.cc", |
| 1835 ] | 1857 ] |
| 1836 | 1858 |
| 1837 configs += [ | 1859 configs += [ |
| 1838 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1860 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 1839 "//build/config/compiler:no_size_t_to_int_warning", | 1861 "//build/config/compiler:no_size_t_to_int_warning", |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1999 "//third_party/WebKit/Source:inside_blink", | 2021 "//third_party/WebKit/Source:inside_blink", |
| 2000 ] | 2022 ] |
| 2001 | 2023 |
| 2002 deps = [ | 2024 deps = [ |
| 2003 ":test_support", | 2025 ":test_support", |
| 2004 "//cc/surfaces:surface_id", | 2026 "//cc/surfaces:surface_id", |
| 2005 "//testing/gmock", | 2027 "//testing/gmock", |
| 2006 "//testing/gtest", | 2028 "//testing/gtest", |
| 2007 ] | 2029 ] |
| 2008 } | 2030 } |
| OLD | NEW |