Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2319053004: [Reland] Make canceling Timers fast. (Closed)
Patch Set: Add missing file Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1947 matching lines...) Expand 10 before | Expand all | Expand 10 after
1958 ":blink_platform_unittests_data", 1958 ":blink_platform_unittests_data",
1959 ] 1959 ]
1960 1960
1961 defines = [ "INSIDE_BLINK" ] 1961 defines = [ "INSIDE_BLINK" ]
1962 1962
1963 include_dirs = [ "$root_gen_dir/blink" ] 1963 include_dirs = [ "$root_gen_dir/blink" ]
1964 } 1964 }
1965 1965
1966 test("blink_platform_perftests") { 1966 test("blink_platform_perftests") {
1967 sources = [ 1967 sources = [
1968 "TimerPerfTest.cpp",
1968 "scheduler/base/task_queue_manager_delegate_for_test.cc", 1969 "scheduler/base/task_queue_manager_delegate_for_test.cc",
1969 "scheduler/base/task_queue_manager_delegate_for_test.h", 1970 "scheduler/base/task_queue_manager_delegate_for_test.h",
1970 "scheduler/base/task_queue_manager_perftest.cc", 1971 "scheduler/base/task_queue_manager_perftest.cc",
1972 "testing/RunAllPerfTests.cpp",
1971 ] 1973 ]
1972 1974
1973 configs += [ 1975 configs += [
1974 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1976 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1975 "//build/config/compiler:no_size_t_to_int_warning", 1977 "//build/config/compiler:no_size_t_to_int_warning",
1976 "//third_party/WebKit/Source/wtf:wtf_config", 1978 "//third_party/WebKit/Source/wtf:wtf_config",
1977 "//third_party/WebKit/Source:config", 1979 "//third_party/WebKit/Source:config",
1978 ] 1980 ]
1979 1981
1980 deps = [ 1982 deps = [
1981 ":blink_common", 1983 ":blink_common",
1982 ":platform", 1984 ":platform",
1985 ":test_support",
1983 "//base", 1986 "//base",
1984 "//base/test:test_support", 1987 "//base/test:test_support",
1985 "//base/test:test_support_perf", 1988 "//content/test:test_support",
1986 "//testing/gtest", 1989 "//testing/gtest",
1987 "//testing/perf", 1990 "//testing/perf",
1988 ] 1991 ]
1989 } 1992 }
1990 1993
1991 group("blink_platform_unittests_data") { 1994 group("blink_platform_unittests_data") {
1992 data = [ 1995 data = [
1993 "testing/data/", 1996 "testing/data/",
1994 1997
1995 # Required by some image decoder tests. 1998 # Required by some image decoder tests.
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
2098 "//third_party/WebKit/Source:inside_blink", 2101 "//third_party/WebKit/Source:inside_blink",
2099 ] 2102 ]
2100 2103
2101 deps = [ 2104 deps = [
2102 ":test_support", 2105 ":test_support",
2103 "//cc/surfaces:surface_id", 2106 "//cc/surfaces:surface_id",
2104 "//testing/gmock", 2107 "//testing/gmock",
2105 "//testing/gtest", 2108 "//testing/gtest",
2106 ] 2109 ]
2107 } 2110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698