| 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/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| (...skipping 1846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1857 "//testing/perf", | 1857 "//testing/perf", |
| 1858 ] | 1858 ] |
| 1859 } | 1859 } |
| 1860 | 1860 |
| 1861 group("blink_platform_unittests_data") { | 1861 group("blink_platform_unittests_data") { |
| 1862 data = [ | 1862 data = [ |
| 1863 "testing/data/", | 1863 "testing/data/", |
| 1864 | 1864 |
| 1865 # Required by some image decoder tests. | 1865 # Required by some image decoder tests. |
| 1866 "image-decoders/testing/", | 1866 "image-decoders/testing/", |
| 1867 "../../LayoutTests/fast/images/resources/", | 1867 "../../LayoutTests/images/resources/", |
| 1868 ] | 1868 ] |
| 1869 } | 1869 } |
| 1870 | 1870 |
| 1871 if (current_cpu == "arm") { | 1871 if (current_cpu == "arm") { |
| 1872 source_set("blink_arm_neon") { | 1872 source_set("blink_arm_neon") { |
| 1873 sources = blink_platform_neon_files | 1873 sources = blink_platform_neon_files |
| 1874 | 1874 |
| 1875 # The *NEON.cpp files fail to compile when -mthumb is passed. Force | 1875 # The *NEON.cpp files fail to compile when -mthumb is passed. Force |
| 1876 # them to build in ARM mode. | 1876 # them to build in ARM mode. |
| 1877 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 1877 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2005 "//third_party/WebKit/Source:inside_blink", | 2005 "//third_party/WebKit/Source:inside_blink", |
| 2006 ] | 2006 ] |
| 2007 | 2007 |
| 2008 deps = [ | 2008 deps = [ |
| 2009 ":test_support", | 2009 ":test_support", |
| 2010 "//cc/surfaces:surface_id", | 2010 "//cc/surfaces:surface_id", |
| 2011 "//testing/gmock", | 2011 "//testing/gmock", |
| 2012 "//testing/gtest", | 2012 "//testing/gtest", |
| 2013 ] | 2013 ] |
| 2014 } | 2014 } |
| OLD | NEW |