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 "ContentSettingsClient.cpp", | 13 "ContentSettingsClient.cpp", |
14 "ContentSettingsClient.h", | 14 "ContentSettingsClient.h", |
| 15 "ContextMenuAllowedScope.cpp", |
| 16 "ContextMenuAllowedScope.h", |
15 "DOMTimer.cpp", | 17 "DOMTimer.cpp", |
16 "DOMTimer.h", | 18 "DOMTimer.h", |
17 "DOMTimerCoordinator.cpp", | 19 "DOMTimerCoordinator.cpp", |
18 "DOMTimerCoordinator.h", | 20 "DOMTimerCoordinator.h", |
19 "DOMVisualViewport.cpp", | 21 "DOMVisualViewport.cpp", |
20 "DOMVisualViewport.h", | 22 "DOMVisualViewport.h", |
21 "DOMWindow.cpp", | 23 "DOMWindow.cpp", |
22 "DOMWindow.h", | 24 "DOMWindow.h", |
23 "DOMWindowBase64.cpp", | 25 "DOMWindowBase64.cpp", |
24 "DOMWindowBase64.h", | 26 "DOMWindowBase64.h", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 "csp/MediaListDirective.h", | 136 "csp/MediaListDirective.h", |
135 "csp/SourceListDirective.cpp", | 137 "csp/SourceListDirective.cpp", |
136 "csp/SourceListDirective.h", | 138 "csp/SourceListDirective.h", |
137 ] | 139 ] |
138 | 140 |
139 configs += [ | 141 configs += [ |
140 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 142 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
141 "//build/config/compiler:no_size_t_to_int_warning", | 143 "//build/config/compiler:no_size_t_to_int_warning", |
142 ] | 144 ] |
143 } | 145 } |
OLD | NEW |