| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "SubresourceIntegrity.h", | 94 "SubresourceIntegrity.h", |
| 95 "SuspendableTimer.cpp", | 95 "SuspendableTimer.cpp", |
| 96 "SuspendableTimer.h", | 96 "SuspendableTimer.h", |
| 97 "TopControls.cpp", | 97 "TopControls.cpp", |
| 98 "TopControls.h", | 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", | |
| 105 "csp/ContentSecurityPolicy.cpp", | 104 "csp/ContentSecurityPolicy.cpp", |
| 106 "csp/MediaListDirective.cpp", | 105 "csp/MediaListDirective.cpp", |
| 107 "csp/SourceListDirective.cpp", | 106 "csp/SourceListDirective.cpp", |
| 108 ] | 107 ] |
| 109 | 108 |
| 110 configs += [ | 109 configs += [ |
| 111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 110 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 112 "//build/config/compiler:no_size_t_to_int_warning", | 111 "//build/config/compiler:no_size_t_to_int_warning", |
| 113 ] | 112 ] |
| 114 } | 113 } |
| OLD | NEW |