| 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 1852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1863 "transforms/RotationTest.cpp", | 1863 "transforms/RotationTest.cpp", |
| 1864 "transforms/TransformOperationsTest.cpp", | 1864 "transforms/TransformOperationsTest.cpp", |
| 1865 "transforms/TransformationMatrixTest.cpp", | 1865 "transforms/TransformationMatrixTest.cpp", |
| 1866 "weborigin/KURLTest.cpp", | 1866 "weborigin/KURLTest.cpp", |
| 1867 "weborigin/KnownPortsTest.cpp", | 1867 "weborigin/KnownPortsTest.cpp", |
| 1868 "weborigin/OriginAccessEntryTest.cpp", | 1868 "weborigin/OriginAccessEntryTest.cpp", |
| 1869 "weborigin/SchemeRegistryTest.cpp", | 1869 "weborigin/SchemeRegistryTest.cpp", |
| 1870 "weborigin/SecurityOriginTest.cpp", | 1870 "weborigin/SecurityOriginTest.cpp", |
| 1871 "weborigin/SecurityPolicyTest.cpp", | 1871 "weborigin/SecurityPolicyTest.cpp", |
| 1872 "weborigin/SuboriginTest.cpp", | 1872 "weborigin/SuboriginTest.cpp", |
| 1873 "wtf/PtrUtilTest.cpp", | |
| 1874 ] | 1873 ] |
| 1875 | 1874 |
| 1876 if (is_win) { | 1875 if (is_win) { |
| 1877 sources += [ "text/LocaleWinTest.cpp" ] | 1876 sources += [ "text/LocaleWinTest.cpp" ] |
| 1878 } else if (is_mac) { | 1877 } else if (is_mac) { |
| 1879 sources += [ "text/LocaleMacTest.cpp" ] | 1878 sources += [ "text/LocaleMacTest.cpp" ] |
| 1880 } else if (is_posix) { | 1879 } else if (is_posix) { |
| 1881 sources += [ "text/LocaleICUTest.cpp" ] | 1880 sources += [ "text/LocaleICUTest.cpp" ] |
| 1882 } | 1881 } |
| 1883 | 1882 |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2156 "//third_party/WebKit/Source:config", | 2155 "//third_party/WebKit/Source:config", |
| 2157 "//third_party/WebKit/Source:inside_blink", | 2156 "//third_party/WebKit/Source:inside_blink", |
| 2158 ] | 2157 ] |
| 2159 | 2158 |
| 2160 deps = [ | 2159 deps = [ |
| 2161 ":test_support", | 2160 ":test_support", |
| 2162 "//testing/gmock", | 2161 "//testing/gmock", |
| 2163 "//testing/gtest", | 2162 "//testing/gtest", |
| 2164 ] | 2163 ] |
| 2165 } | 2164 } |
| OLD | NEW |