OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 import("//third_party/WebKit/Source/core/core.gni") | |
6 | |
7 blink_core_sources("frame") { | |
8 sources = [ | |
9 "BarProp.cpp", | |
10 "BarProp.h", | |
11 "DOMTimer.cpp", | |
12 "DOMTimer.h", | |
13 "DOMTimerCoordinator.cpp", | |
14 "DOMTimerCoordinator.h", | |
15 "DOMVisualViewport.cpp", | |
16 "DOMVisualViewport.h", | |
17 "DOMWindow.cpp", | |
18 "DOMWindow.h", | |
19 "DOMWindowBase64.cpp", | |
20 "DOMWindowBase64.h", | |
21 "DOMWindowEventHandlers.h", | |
22 "DOMWindowProperty.cpp", | |
23 "DOMWindowProperty.h", | |
24 "DOMWindowTimers.cpp", | |
25 "DOMWindowTimers.h", | |
26 "DeprecatedScheduleStyleRecalcDuringLayout.cpp", | |
27 "DeprecatedScheduleStyleRecalcDuringLayout.h", | |
28 "Deprecation.cpp", | |
29 "Deprecation.h", | |
30 "DeviceSingleWindowEventController.cpp", | |
31 "DeviceSingleWindowEventController.h", | |
32 "EventHandlerRegistry.cpp", | |
33 "EventHandlerRegistry.h", | |
34 "External.h", | |
35 "Frame.cpp", | |
36 "Frame.h", | |
37 "FrameConsole.cpp", | |
38 "FrameHost.cpp", | |
39 "FrameHost.h", | |
40 "FrameOwner.h", | |
41 "FrameSerializer.cpp", | |
42 "FrameSerializer.h", | |
43 "FrameView.cpp", | |
44 "FrameView.h", | |
45 "FrameViewAutoSizeInfo.cpp", | |
46 "History.cpp", | |
47 "History.h", | |
48 "HostsUsingFeatures.cpp", | |
49 "HostsUsingFeatures.h", | |
50 "ImageBitmap.cpp", | |
51 "ImageBitmap.h", | |
52 "LayoutSubtreeRootList.cpp", | |
53 "LayoutSubtreeRootList.h", | |
54 "LocalDOMWindow.cpp", | |
55 "LocalDOMWindow.h", | |
56 "LocalFrame.cpp", | |
57 "LocalFrame.h", | |
58 "LocalFrameLifecycleNotifier.h", | |
59 "LocalFrameLifecycleObserver.h", | |
60 "Location.cpp", | |
61 "Location.h", | |
62 "Navigator.cpp", | |
63 "Navigator.h", | |
64 "NavigatorCPU.cpp", | |
65 "NavigatorCPU.h", | |
66 "NavigatorID.cpp", | |
67 "NavigatorID.h", | |
68 "NavigatorLanguage.cpp", | |
69 "NavigatorLanguage.h", | |
70 "NavigatorOnLine.h", | |
71 "PageScaleConstraints.cpp", | |
72 "PageScaleConstraints.h", | |
73 "PageScaleConstraintsSet.cpp", | |
74 "PageScaleConstraintsSet.h", | |
75 "PlatformEventController.cpp", | |
76 "PlatformEventController.h", | |
77 "PlatformEventDispatcher.cpp", | |
78 "PlatformEventDispatcher.h", | |
79 "RemoteDOMWindow.cpp", | |
80 "RemoteDOMWindow.h", | |
81 "RemoteFrame.cpp", | |
82 "RemoteFrame.h", | |
83 "RemoteFrameClient.h", | |
84 "RemoteFrameView.cpp", | |
85 "RemoteFrameView.h", | |
86 "RootFrameViewport.cpp", | |
87 "RootFrameViewport.h", | |
88 "Screen.cpp", | |
89 "Screen.h", | |
90 "Settings.cpp", | |
91 "SettingsDelegate.cpp", | |
92 "SettingsDelegate.h", | |
93 "SmartClip.cpp", | |
94 "SmartClip.h", | |
95 "SubresourceIntegrity.cpp", | |
96 "SubresourceIntegrity.h", | |
97 "SuspendableTimer.cpp", | |
98 "SuspendableTimer.h", | |
99 "TopControls.cpp", | |
100 "TopControls.h", | |
101 "UseCounter.cpp", | |
102 "VisualViewport.cpp", | |
103 "VisualViewport.h", | |
104 "csp/CSPDirectiveList.cpp", | |
105 "csp/CSPSource.cpp", | |
106 "csp/CSPSourceList.cpp", | |
107 "csp/ContentSecurityPolicy.cpp", | |
108 "csp/MediaListDirective.cpp", | |
109 "csp/SourceListDirective.cpp", | |
110 ] | |
111 | |
112 configs += [ | |
113 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
114 "//build/config/compiler:no_size_t_to_int_warning", | |
115 ] | |
116 } | |
OLD | NEW |