| 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 1933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1944 "//base/test:test_support_perf", | 1944 "//base/test:test_support_perf", |
| 1945 "//testing/gtest", | 1945 "//testing/gtest", |
| 1946 "//testing/perf", | 1946 "//testing/perf", |
| 1947 ] | 1947 ] |
| 1948 } | 1948 } |
| 1949 | 1949 |
| 1950 group("blink_platform_unittests_data") { | 1950 group("blink_platform_unittests_data") { |
| 1951 data = [ | 1951 data = [ |
| 1952 "testing/data/", | 1952 "testing/data/", |
| 1953 | 1953 |
| 1954 # TODO(toyoshim): Used by ResourceFetcherTest. Remove this dependency. | |
| 1955 "../web/tests/data/", | |
| 1956 | |
| 1957 # Required by some image decoder tests. | 1954 # Required by some image decoder tests. |
| 1958 "image-decoders/testing/", | 1955 "image-decoders/testing/", |
| 1959 "../../LayoutTests/images/resources/", | 1956 "../../LayoutTests/images/resources/", |
| 1960 ] | 1957 ] |
| 1961 } | 1958 } |
| 1962 | 1959 |
| 1963 if (current_cpu == "arm") { | 1960 if (current_cpu == "arm") { |
| 1964 source_set("blink_arm_neon") { | 1961 source_set("blink_arm_neon") { |
| 1965 sources = blink_platform_neon_files | 1962 sources = blink_platform_neon_files |
| 1966 | 1963 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2109 "//third_party/WebKit/Source:config", | 2106 "//third_party/WebKit/Source:config", |
| 2110 "//third_party/WebKit/Source:inside_blink", | 2107 "//third_party/WebKit/Source:inside_blink", |
| 2111 ] | 2108 ] |
| 2112 | 2109 |
| 2113 deps = [ | 2110 deps = [ |
| 2114 ":test_support", | 2111 ":test_support", |
| 2115 "//testing/gmock", | 2112 "//testing/gmock", |
| 2116 "//testing/gtest", | 2113 "//testing/gtest", |
| 2117 ] | 2114 ] |
| 2118 } | 2115 } |
| OLD | NEW |