OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//third_party/WebKit/Source/core/core.gni") | 5 import("//third_party/WebKit/Source/core/core.gni") |
6 | 6 |
7 blink_core_sources("timing") { | 7 blink_core_sources("timing") { |
8 sources = [ | 8 sources = [ |
9 "DOMWindowPerformance.cpp", | 9 "DOMWindowPerformance.cpp", |
10 "DOMWindowPerformance.h", | 10 "DOMWindowPerformance.h", |
11 "MemoryInfo.cpp", | 11 "MemoryInfo.cpp", |
12 "Performance.cpp", | 12 "Performance.cpp", |
13 "Performance.h", | 13 "Performance.h", |
14 "PerformanceBase.cpp", | 14 "PerformanceBase.cpp", |
15 "PerformanceBase.h", | 15 "PerformanceBase.h", |
16 "PerformanceEntry.cpp", | 16 "PerformanceEntry.cpp", |
17 "PerformanceEntry.h", | 17 "PerformanceEntry.h", |
18 "PerformanceLongTaskTiming.cpp", | 18 "PerformanceLongTaskTiming.cpp", |
19 "PerformanceLongTaskTiming.h", | 19 "PerformanceLongTaskTiming.h", |
20 "PerformanceMark.h", | 20 "PerformanceMark.h", |
21 "PerformanceMeasure.h", | 21 "PerformanceMeasure.h", |
22 "PerformanceNavigation.cpp", | 22 "PerformanceNavigation.cpp", |
23 "PerformanceNavigation.h", | 23 "PerformanceNavigation.h", |
24 "PerformanceNavigationTiming.cpp", | 24 "PerformanceNavigationTiming.cpp", |
25 "PerformanceNavigationTiming.h", | 25 "PerformanceNavigationTiming.h", |
26 "PerformanceObserver.cpp", | 26 "PerformanceObserver.cpp", |
27 "PerformanceObserver.h", | 27 "PerformanceObserver.h", |
28 "PerformanceObserverEntryList.cpp", | 28 "PerformanceObserverEntryList.cpp", |
29 "PerformanceObserverEntryList.h", | 29 "PerformanceObserverEntryList.h", |
| 30 "PerformancePaintTiming.cpp", |
| 31 "PerformancePaintTiming.h", |
30 "PerformanceResourceTiming.cpp", | 32 "PerformanceResourceTiming.cpp", |
31 "PerformanceResourceTiming.h", | 33 "PerformanceResourceTiming.h", |
32 "PerformanceTiming.cpp", | 34 "PerformanceTiming.cpp", |
33 "PerformanceTiming.h", | 35 "PerformanceTiming.h", |
34 "PerformanceUserTiming.cpp", | 36 "PerformanceUserTiming.cpp", |
35 "PerformanceUserTiming.h", | 37 "PerformanceUserTiming.h", |
36 "SharedWorkerPerformance.cpp", | 38 "SharedWorkerPerformance.cpp", |
37 "TaskAttributionTiming.cpp", | 39 "TaskAttributionTiming.cpp", |
38 "TaskAttributionTiming.h", | 40 "TaskAttributionTiming.h", |
39 "WorkerGlobalScopePerformance.cpp", | 41 "WorkerGlobalScopePerformance.cpp", |
40 "WorkerGlobalScopePerformance.h", | 42 "WorkerGlobalScopePerformance.h", |
41 "WorkerPerformance.cpp", | 43 "WorkerPerformance.cpp", |
42 "WorkerPerformance.h", | 44 "WorkerPerformance.h", |
43 ] | 45 ] |
44 | 46 |
45 configs += [ | 47 configs += [ |
46 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
47 "//build/config/compiler:no_size_t_to_int_warning", | 49 "//build/config/compiler:no_size_t_to_int_warning", |
48 ] | 50 ] |
49 } | 51 } |
OLD | NEW |