| 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", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "DeprecatedScheduleStyleRecalcDuringLayout.h", | 27 "DeprecatedScheduleStyleRecalcDuringLayout.h", |
| 28 "Deprecation.cpp", | 28 "Deprecation.cpp", |
| 29 "Deprecation.h", | 29 "Deprecation.h", |
| 30 "DeviceSingleWindowEventController.cpp", | 30 "DeviceSingleWindowEventController.cpp", |
| 31 "DeviceSingleWindowEventController.h", | 31 "DeviceSingleWindowEventController.h", |
| 32 "EventHandlerRegistry.cpp", | 32 "EventHandlerRegistry.cpp", |
| 33 "EventHandlerRegistry.h", | 33 "EventHandlerRegistry.h", |
| 34 "External.h", | 34 "External.h", |
| 35 "Frame.cpp", | 35 "Frame.cpp", |
| 36 "Frame.h", | 36 "Frame.h", |
| 37 "FrameClient.h", |
| 37 "FrameConsole.cpp", | 38 "FrameConsole.cpp", |
| 38 "FrameConsole.h", | 39 "FrameConsole.h", |
| 39 "FrameHost.cpp", | 40 "FrameHost.cpp", |
| 40 "FrameHost.h", | 41 "FrameHost.h", |
| 41 "FrameLifecycle.cpp", | 42 "FrameLifecycle.cpp", |
| 42 "FrameLifecycle.h", | 43 "FrameLifecycle.h", |
| 43 "FrameOwner.h", | 44 "FrameOwner.h", |
| 44 "FrameSerializer.cpp", | 45 "FrameSerializer.cpp", |
| 45 "FrameSerializer.h", | 46 "FrameSerializer.h", |
| 46 "FrameTypes.h", | 47 "FrameTypes.h", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "UseCounter.cpp", | 108 "UseCounter.cpp", |
| 108 "UseCounter.h", | 109 "UseCounter.h", |
| 109 "VisualViewport.cpp", | 110 "VisualViewport.cpp", |
| 110 "VisualViewport.h", | 111 "VisualViewport.h", |
| 111 "csp/CSPDirective.h", | 112 "csp/CSPDirective.h", |
| 112 "csp/CSPDirectiveList.cpp", | 113 "csp/CSPDirectiveList.cpp", |
| 113 "csp/CSPDirectiveList.h", | 114 "csp/CSPDirectiveList.h", |
| 114 "csp/CSPSource.cpp", | 115 "csp/CSPSource.cpp", |
| 115 "csp/CSPSource.h", | 116 "csp/CSPSource.h", |
| 116 "csp/ContentSecurityPolicy.cpp", | 117 "csp/ContentSecurityPolicy.cpp", |
| 118 "csp/ContentSecurityPolicy.h", |
| 117 "csp/MediaListDirective.cpp", | 119 "csp/MediaListDirective.cpp", |
| 118 "csp/MediaListDirective.h", | 120 "csp/MediaListDirective.h", |
| 119 "csp/SourceListDirective.cpp", | 121 "csp/SourceListDirective.cpp", |
| 120 "csp/SourceListDirective.h", | 122 "csp/SourceListDirective.h", |
| 121 ] | 123 ] |
| 122 | 124 |
| 123 configs += [ | 125 configs += [ |
| 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 126 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 125 "//build/config/compiler:no_size_t_to_int_warning", | 127 "//build/config/compiler:no_size_t_to_int_warning", |
| 126 ] | 128 ] |
| 127 } | 129 } |
| OLD | NEW |