| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "ScreenOrientationController.cpp", | 98 "ScreenOrientationController.cpp", |
| 99 "ScreenOrientationController.h", | 99 "ScreenOrientationController.h", |
| 100 "Settings.cpp", | 100 "Settings.cpp", |
| 101 "Settings.h", | 101 "Settings.h", |
| 102 "SettingsDelegate.cpp", | 102 "SettingsDelegate.cpp", |
| 103 "SettingsDelegate.h", | 103 "SettingsDelegate.h", |
| 104 "SmartClip.cpp", | 104 "SmartClip.cpp", |
| 105 "SmartClip.h", | 105 "SmartClip.h", |
| 106 "SubresourceIntegrity.cpp", | 106 "SubresourceIntegrity.cpp", |
| 107 "SubresourceIntegrity.h", | 107 "SubresourceIntegrity.h", |
| 108 "SuspendableScriptExecutor.cpp", |
| 109 "SuspendableScriptExecutor.h", |
| 108 "SuspendableTimer.cpp", | 110 "SuspendableTimer.cpp", |
| 109 "SuspendableTimer.h", | 111 "SuspendableTimer.h", |
| 110 "UseCounter.cpp", | 112 "UseCounter.cpp", |
| 111 "UseCounter.h", | 113 "UseCounter.h", |
| 112 "VisualViewport.cpp", | 114 "VisualViewport.cpp", |
| 113 "VisualViewport.h", | 115 "VisualViewport.h", |
| 114 "csp/CSPDirective.h", | 116 "csp/CSPDirective.h", |
| 115 "csp/CSPDirectiveList.cpp", | 117 "csp/CSPDirectiveList.cpp", |
| 116 "csp/CSPDirectiveList.h", | 118 "csp/CSPDirectiveList.h", |
| 117 "csp/CSPSource.cpp", | 119 "csp/CSPSource.cpp", |
| 118 "csp/CSPSource.h", | 120 "csp/CSPSource.h", |
| 119 "csp/ContentSecurityPolicy.cpp", | 121 "csp/ContentSecurityPolicy.cpp", |
| 120 "csp/ContentSecurityPolicy.h", | 122 "csp/ContentSecurityPolicy.h", |
| 121 "csp/MediaListDirective.cpp", | 123 "csp/MediaListDirective.cpp", |
| 122 "csp/MediaListDirective.h", | 124 "csp/MediaListDirective.h", |
| 123 "csp/SourceListDirective.cpp", | 125 "csp/SourceListDirective.cpp", |
| 124 "csp/SourceListDirective.h", | 126 "csp/SourceListDirective.h", |
| 125 ] | 127 ] |
| 126 | 128 |
| 127 configs += [ | 129 configs += [ |
| 128 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 129 "//build/config/compiler:no_size_t_to_int_warning", | 131 "//build/config/compiler:no_size_t_to_int_warning", |
| 130 ] | 132 ] |
| 131 } | 133 } |
| OLD | NEW |