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