| 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", |
| 25 "PerformanceNavigationTiming.h", |
| 24 "PerformanceObserver.cpp", | 26 "PerformanceObserver.cpp", |
| 25 "PerformanceObserver.h", | 27 "PerformanceObserver.h", |
| 26 "PerformanceObserverEntryList.cpp", | 28 "PerformanceObserverEntryList.cpp", |
| 27 "PerformanceObserverEntryList.h", | 29 "PerformanceObserverEntryList.h", |
| 28 "PerformanceResourceTiming.cpp", | 30 "PerformanceResourceTiming.cpp", |
| 29 "PerformanceResourceTiming.h", | 31 "PerformanceResourceTiming.h", |
| 30 "PerformanceTiming.cpp", | 32 "PerformanceTiming.cpp", |
| 31 "PerformanceTiming.h", | 33 "PerformanceTiming.h", |
| 32 "PerformanceUserTiming.cpp", | 34 "PerformanceUserTiming.cpp", |
| 33 "PerformanceUserTiming.h", | 35 "PerformanceUserTiming.h", |
| 34 "SharedWorkerPerformance.cpp", | 36 "SharedWorkerPerformance.cpp", |
| 35 "WorkerGlobalScopePerformance.cpp", | 37 "WorkerGlobalScopePerformance.cpp", |
| 36 "WorkerGlobalScopePerformance.h", | 38 "WorkerGlobalScopePerformance.h", |
| 37 "WorkerPerformance.cpp", | 39 "WorkerPerformance.cpp", |
| 38 "WorkerPerformance.h", | 40 "WorkerPerformance.h", |
| 39 ] | 41 ] |
| 40 | 42 |
| 41 configs += [ | 43 configs += [ |
| 42 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 44 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 43 "//build/config/compiler:no_size_t_to_int_warning", | 45 "//build/config/compiler:no_size_t_to_int_warning", |
| 44 ] | 46 ] |
| 45 } | 47 } |
| OLD | NEW |