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", |
| 14 "ContentSettingsClient.h", |
13 "DOMTimer.cpp", | 15 "DOMTimer.cpp", |
14 "DOMTimer.h", | 16 "DOMTimer.h", |
15 "DOMTimerCoordinator.cpp", | 17 "DOMTimerCoordinator.cpp", |
16 "DOMTimerCoordinator.h", | 18 "DOMTimerCoordinator.h", |
17 "DOMVisualViewport.cpp", | 19 "DOMVisualViewport.cpp", |
18 "DOMVisualViewport.h", | 20 "DOMVisualViewport.h", |
19 "DOMWindow.cpp", | 21 "DOMWindow.cpp", |
20 "DOMWindow.h", | 22 "DOMWindow.h", |
21 "DOMWindowBase64.cpp", | 23 "DOMWindowBase64.cpp", |
22 "DOMWindowBase64.h", | 24 "DOMWindowBase64.h", |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 "csp/MediaListDirective.h", | 118 "csp/MediaListDirective.h", |
117 "csp/SourceListDirective.cpp", | 119 "csp/SourceListDirective.cpp", |
118 "csp/SourceListDirective.h", | 120 "csp/SourceListDirective.h", |
119 ] | 121 ] |
120 | 122 |
121 configs += [ | 123 configs += [ |
122 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
123 "//build/config/compiler:no_size_t_to_int_warning", | 125 "//build/config/compiler:no_size_t_to_int_warning", |
124 ] | 126 ] |
125 } | 127 } |
OLD | NEW |