| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "SuspendableScriptExecutor.cpp", | 112 "SuspendableScriptExecutor.cpp", |
| 113 "SuspendableScriptExecutor.h", | 113 "SuspendableScriptExecutor.h", |
| 114 "SuspendableTimer.cpp", | 114 "SuspendableTimer.cpp", |
| 115 "SuspendableTimer.h", | 115 "SuspendableTimer.h", |
| 116 "UseCounter.cpp", | 116 "UseCounter.cpp", |
| 117 "UseCounter.h", | 117 "UseCounter.h", |
| 118 "VisualViewport.cpp", | 118 "VisualViewport.cpp", |
| 119 "VisualViewport.h", | 119 "VisualViewport.h", |
| 120 "WebLocalFrameBase.cpp", | 120 "WebLocalFrameBase.cpp", |
| 121 "WebLocalFrameBase.h", | 121 "WebLocalFrameBase.h", |
| 122 "WebRemoteFrameBase.cpp", |
| 123 "WebRemoteFrameBase.h", |
| 122 "csp/CSPDirective.h", | 124 "csp/CSPDirective.h", |
| 123 "csp/CSPDirectiveList.cpp", | 125 "csp/CSPDirectiveList.cpp", |
| 124 "csp/CSPDirectiveList.h", | 126 "csp/CSPDirectiveList.h", |
| 125 "csp/CSPSource.cpp", | 127 "csp/CSPSource.cpp", |
| 126 "csp/CSPSource.h", | 128 "csp/CSPSource.h", |
| 127 "csp/ContentSecurityPolicy.cpp", | 129 "csp/ContentSecurityPolicy.cpp", |
| 128 "csp/ContentSecurityPolicy.h", | 130 "csp/ContentSecurityPolicy.h", |
| 129 "csp/MediaListDirective.cpp", | 131 "csp/MediaListDirective.cpp", |
| 130 "csp/MediaListDirective.h", | 132 "csp/MediaListDirective.h", |
| 131 "csp/SourceListDirective.cpp", | 133 "csp/SourceListDirective.cpp", |
| 132 "csp/SourceListDirective.h", | 134 "csp/SourceListDirective.h", |
| 133 ] | 135 ] |
| 134 | 136 |
| 135 configs += [ | 137 configs += [ |
| 136 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 138 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 137 "//build/config/compiler:no_size_t_to_int_warning", | 139 "//build/config/compiler:no_size_t_to_int_warning", |
| 138 ] | 140 ] |
| 139 } | 141 } |
| OLD | NEW |