| 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("frame") { | 7 blink_core_sources("frame") { |
| 8 sources = [ | 8 sources = [ |
| 9 "BarProp.cpp", | 9 "BarProp.cpp", |
| 10 "BarProp.h", | 10 "BarProp.h", |
| 11 "BrowserControls.cpp", | 11 "BrowserControls.cpp", |
| 12 "BrowserControls.h", | 12 "BrowserControls.h", |
| 13 "DOMTimer.cpp", | 13 "DOMTimer.cpp", |
| 14 "DOMTimer.h", | 14 "DOMTimer.h", |
| 15 "DOMTimerCoordinator.cpp", | 15 "DOMTimerCoordinator.cpp", |
| 16 "DOMTimerCoordinator.h", | 16 "DOMTimerCoordinator.h", |
| 17 "DOMVisualViewport.cpp", | 17 "DOMVisualViewport.cpp", |
| 18 "DOMVisualViewport.h", | 18 "DOMVisualViewport.h", |
| 19 "DOMWindow.cpp", | 19 "DOMWindow.cpp", |
| 20 "DOMWindow.h", | 20 "DOMWindow.h", |
| 21 "DOMWindowBase64.cpp", | 21 "DOMWindowBase64.cpp", |
| 22 "DOMWindowBase64.h", | 22 "DOMWindowBase64.h", |
| 23 "DOMWindowEventHandlers.h", | 23 "DOMWindowEventHandlers.h", |
| 24 "DOMWindowProperty.cpp", | |
| 25 "DOMWindowProperty.h", | |
| 26 "DOMWindowTimers.cpp", | 24 "DOMWindowTimers.cpp", |
| 27 "DOMWindowTimers.h", | 25 "DOMWindowTimers.h", |
| 28 "DeprecatedScheduleStyleRecalcDuringLayout.cpp", | 26 "DeprecatedScheduleStyleRecalcDuringLayout.cpp", |
| 29 "DeprecatedScheduleStyleRecalcDuringLayout.h", | 27 "DeprecatedScheduleStyleRecalcDuringLayout.h", |
| 30 "Deprecation.cpp", | 28 "Deprecation.cpp", |
| 31 "Deprecation.h", | 29 "Deprecation.h", |
| 32 "DeviceSingleWindowEventController.cpp", | 30 "DeviceSingleWindowEventController.cpp", |
| 33 "DeviceSingleWindowEventController.h", | 31 "DeviceSingleWindowEventController.h", |
| 34 "EventHandlerRegistry.cpp", | 32 "EventHandlerRegistry.cpp", |
| 35 "EventHandlerRegistry.h", | 33 "EventHandlerRegistry.h", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "csp/ContentSecurityPolicy.cpp", | 106 "csp/ContentSecurityPolicy.cpp", |
| 109 "csp/MediaListDirective.cpp", | 107 "csp/MediaListDirective.cpp", |
| 110 "csp/SourceListDirective.cpp", | 108 "csp/SourceListDirective.cpp", |
| 111 ] | 109 ] |
| 112 | 110 |
| 113 configs += [ | 111 configs += [ |
| 114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 115 "//build/config/compiler:no_size_t_to_int_warning", | 113 "//build/config/compiler:no_size_t_to_int_warning", |
| 116 ] | 114 ] |
| 117 } | 115 } |
| OLD | NEW |