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", |
| 12 "BrowserControls.h", |
11 "DOMTimer.cpp", | 13 "DOMTimer.cpp", |
12 "DOMTimer.h", | 14 "DOMTimer.h", |
13 "DOMTimerCoordinator.cpp", | 15 "DOMTimerCoordinator.cpp", |
14 "DOMTimerCoordinator.h", | 16 "DOMTimerCoordinator.h", |
15 "DOMVisualViewport.cpp", | 17 "DOMVisualViewport.cpp", |
16 "DOMVisualViewport.h", | 18 "DOMVisualViewport.h", |
17 "DOMWindow.cpp", | 19 "DOMWindow.cpp", |
18 "DOMWindow.h", | 20 "DOMWindow.h", |
19 "DOMWindowBase64.cpp", | 21 "DOMWindowBase64.cpp", |
20 "DOMWindowBase64.h", | 22 "DOMWindowBase64.h", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "Screen.h", | 89 "Screen.h", |
88 "Settings.cpp", | 90 "Settings.cpp", |
89 "SettingsDelegate.cpp", | 91 "SettingsDelegate.cpp", |
90 "SettingsDelegate.h", | 92 "SettingsDelegate.h", |
91 "SmartClip.cpp", | 93 "SmartClip.cpp", |
92 "SmartClip.h", | 94 "SmartClip.h", |
93 "SubresourceIntegrity.cpp", | 95 "SubresourceIntegrity.cpp", |
94 "SubresourceIntegrity.h", | 96 "SubresourceIntegrity.h", |
95 "SuspendableTimer.cpp", | 97 "SuspendableTimer.cpp", |
96 "SuspendableTimer.h", | 98 "SuspendableTimer.h", |
97 "TopControls.cpp", | |
98 "TopControls.h", | |
99 "UseCounter.cpp", | 99 "UseCounter.cpp", |
100 "VisualViewport.cpp", | 100 "VisualViewport.cpp", |
101 "VisualViewport.h", | 101 "VisualViewport.h", |
102 "csp/CSPDirectiveList.cpp", | 102 "csp/CSPDirectiveList.cpp", |
103 "csp/CSPSource.cpp", | 103 "csp/CSPSource.cpp", |
104 "csp/CSPSourceList.cpp", | 104 "csp/CSPSourceList.cpp", |
105 "csp/ContentSecurityPolicy.cpp", | 105 "csp/ContentSecurityPolicy.cpp", |
106 "csp/MediaListDirective.cpp", | 106 "csp/MediaListDirective.cpp", |
107 "csp/SourceListDirective.cpp", | 107 "csp/SourceListDirective.cpp", |
108 ] | 108 ] |
109 | 109 |
110 configs += [ | 110 configs += [ |
111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
112 "//build/config/compiler:no_size_t_to_int_warning", | 112 "//build/config/compiler:no_size_t_to_int_warning", |
113 ] | 113 ] |
114 } | 114 } |
OLD | NEW |