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 "MemoryInfo.h", |
12 "Performance.cpp", | 13 "Performance.cpp", |
13 "Performance.h", | 14 "Performance.h", |
14 "PerformanceBase.cpp", | 15 "PerformanceBase.cpp", |
15 "PerformanceBase.h", | 16 "PerformanceBase.h", |
16 "PerformanceEntry.cpp", | 17 "PerformanceEntry.cpp", |
17 "PerformanceEntry.h", | 18 "PerformanceEntry.h", |
18 "PerformanceLongTaskTiming.cpp", | 19 "PerformanceLongTaskTiming.cpp", |
19 "PerformanceLongTaskTiming.h", | 20 "PerformanceLongTaskTiming.h", |
20 "PerformanceMark.h", | 21 "PerformanceMark.h", |
21 "PerformanceMeasure.h", | 22 "PerformanceMeasure.h", |
22 "PerformanceNavigation.cpp", | 23 "PerformanceNavigation.cpp", |
23 "PerformanceNavigation.h", | 24 "PerformanceNavigation.h", |
24 "PerformanceNavigationTiming.cpp", | 25 "PerformanceNavigationTiming.cpp", |
25 "PerformanceNavigationTiming.h", | 26 "PerformanceNavigationTiming.h", |
26 "PerformanceObserver.cpp", | 27 "PerformanceObserver.cpp", |
27 "PerformanceObserver.h", | 28 "PerformanceObserver.h", |
28 "PerformanceObserverEntryList.cpp", | 29 "PerformanceObserverEntryList.cpp", |
29 "PerformanceObserverEntryList.h", | 30 "PerformanceObserverEntryList.h", |
30 "PerformancePaintTiming.cpp", | 31 "PerformancePaintTiming.cpp", |
31 "PerformancePaintTiming.h", | 32 "PerformancePaintTiming.h", |
32 "PerformanceResourceTiming.cpp", | 33 "PerformanceResourceTiming.cpp", |
33 "PerformanceResourceTiming.h", | 34 "PerformanceResourceTiming.h", |
34 "PerformanceTiming.cpp", | 35 "PerformanceTiming.cpp", |
35 "PerformanceTiming.h", | 36 "PerformanceTiming.h", |
36 "PerformanceUserTiming.cpp", | 37 "PerformanceUserTiming.cpp", |
37 "PerformanceUserTiming.h", | 38 "PerformanceUserTiming.h", |
38 "SharedWorkerPerformance.cpp", | 39 "SharedWorkerPerformance.cpp", |
| 40 "SharedWorkerPerformance.h", |
39 "TaskAttributionTiming.cpp", | 41 "TaskAttributionTiming.cpp", |
40 "TaskAttributionTiming.h", | 42 "TaskAttributionTiming.h", |
41 "WorkerGlobalScopePerformance.cpp", | 43 "WorkerGlobalScopePerformance.cpp", |
42 "WorkerGlobalScopePerformance.h", | 44 "WorkerGlobalScopePerformance.h", |
43 "WorkerPerformance.cpp", | 45 "WorkerPerformance.cpp", |
44 "WorkerPerformance.h", | 46 "WorkerPerformance.h", |
45 ] | 47 ] |
46 | 48 |
47 configs += [ | 49 configs += [ |
48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 50 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
49 "//build/config/compiler:no_size_t_to_int_warning", | 51 "//build/config/compiler:no_size_t_to_int_warning", |
50 ] | 52 ] |
51 } | 53 } |
OLD | NEW |