| 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 17 matching lines...) Expand all Loading... |
| 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 "FrameConsole.cpp", | 37 "FrameConsole.cpp", |
| 38 "FrameConsole.h", |
| 38 "FrameHost.cpp", | 39 "FrameHost.cpp", |
| 39 "FrameHost.h", | 40 "FrameHost.h", |
| 40 "FrameOwner.h", | 41 "FrameOwner.h", |
| 41 "FrameSerializer.cpp", | 42 "FrameSerializer.cpp", |
| 42 "FrameSerializer.h", | 43 "FrameSerializer.h", |
| 43 "FrameView.cpp", | 44 "FrameView.cpp", |
| 44 "FrameView.h", | 45 "FrameView.h", |
| 45 "FrameViewAutoSizeInfo.cpp", | 46 "FrameViewAutoSizeInfo.cpp", |
| 47 "FrameViewAutoSizeInfo.h", |
| 46 "History.cpp", | 48 "History.cpp", |
| 47 "History.h", | 49 "History.h", |
| 48 "HostsUsingFeatures.cpp", | 50 "HostsUsingFeatures.cpp", |
| 49 "HostsUsingFeatures.h", | 51 "HostsUsingFeatures.h", |
| 50 "ImageBitmap.cpp", | 52 "ImageBitmap.cpp", |
| 51 "ImageBitmap.h", | 53 "ImageBitmap.h", |
| 52 "LayoutSubtreeRootList.cpp", | 54 "LayoutSubtreeRootList.cpp", |
| 53 "LayoutSubtreeRootList.h", | 55 "LayoutSubtreeRootList.h", |
| 54 "LocalDOMWindow.cpp", | 56 "LocalDOMWindow.cpp", |
| 55 "LocalDOMWindow.h", | 57 "LocalDOMWindow.h", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "Settings.cpp", | 94 "Settings.cpp", |
| 93 "SettingsDelegate.cpp", | 95 "SettingsDelegate.cpp", |
| 94 "SettingsDelegate.h", | 96 "SettingsDelegate.h", |
| 95 "SmartClip.cpp", | 97 "SmartClip.cpp", |
| 96 "SmartClip.h", | 98 "SmartClip.h", |
| 97 "SubresourceIntegrity.cpp", | 99 "SubresourceIntegrity.cpp", |
| 98 "SubresourceIntegrity.h", | 100 "SubresourceIntegrity.h", |
| 99 "SuspendableTimer.cpp", | 101 "SuspendableTimer.cpp", |
| 100 "SuspendableTimer.h", | 102 "SuspendableTimer.h", |
| 101 "UseCounter.cpp", | 103 "UseCounter.cpp", |
| 104 "UseCounter.h", |
| 102 "VisualViewport.cpp", | 105 "VisualViewport.cpp", |
| 103 "VisualViewport.h", | 106 "VisualViewport.h", |
| 104 "csp/CSPDirectiveList.cpp", | 107 "csp/CSPDirectiveList.cpp", |
| 108 "csp/CSPDirectiveList.h", |
| 105 "csp/CSPSource.cpp", | 109 "csp/CSPSource.cpp", |
| 110 "csp/CSPSource.h", |
| 106 "csp/ContentSecurityPolicy.cpp", | 111 "csp/ContentSecurityPolicy.cpp", |
| 107 "csp/MediaListDirective.cpp", | 112 "csp/MediaListDirective.cpp", |
| 113 "csp/MediaListDirective.h", |
| 108 "csp/SourceListDirective.cpp", | 114 "csp/SourceListDirective.cpp", |
| 115 "csp/SourceListDirective.h", |
| 109 ] | 116 ] |
| 110 | 117 |
| 111 configs += [ | 118 configs += [ |
| 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 119 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 113 "//build/config/compiler:no_size_t_to_int_warning", | 120 "//build/config/compiler:no_size_t_to_int_warning", |
| 114 ] | 121 ] |
| 115 } | 122 } |
| OLD | NEW |