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