| 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 22 matching lines...) Expand all Loading... |
| 33 "EventHandlerRegistry.h", | 33 "EventHandlerRegistry.h", |
| 34 "External.h", | 34 "External.h", |
| 35 "Frame.cpp", | 35 "Frame.cpp", |
| 36 "Frame.h", | 36 "Frame.h", |
| 37 "FrameConsole.cpp", | 37 "FrameConsole.cpp", |
| 38 "FrameHost.cpp", | 38 "FrameHost.cpp", |
| 39 "FrameHost.h", | 39 "FrameHost.h", |
| 40 "FrameOwner.h", | 40 "FrameOwner.h", |
| 41 "FrameSerializer.cpp", | 41 "FrameSerializer.cpp", |
| 42 "FrameSerializer.h", | 42 "FrameSerializer.h", |
| 43 "FrameTimer.h", |
| 43 "FrameView.cpp", | 44 "FrameView.cpp", |
| 44 "FrameView.h", | 45 "FrameView.h", |
| 45 "FrameViewAutoSizeInfo.cpp", | 46 "FrameViewAutoSizeInfo.cpp", |
| 46 "History.cpp", | 47 "History.cpp", |
| 47 "History.h", | 48 "History.h", |
| 48 "HostsUsingFeatures.cpp", | 49 "HostsUsingFeatures.cpp", |
| 49 "HostsUsingFeatures.h", | 50 "HostsUsingFeatures.h", |
| 50 "ImageBitmap.cpp", | 51 "ImageBitmap.cpp", |
| 51 "ImageBitmap.h", | 52 "ImageBitmap.h", |
| 52 "LayoutSubtreeRootList.cpp", | 53 "LayoutSubtreeRootList.cpp", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "csp/ContentSecurityPolicy.cpp", | 106 "csp/ContentSecurityPolicy.cpp", |
| 106 "csp/MediaListDirective.cpp", | 107 "csp/MediaListDirective.cpp", |
| 107 "csp/SourceListDirective.cpp", | 108 "csp/SourceListDirective.cpp", |
| 108 ] | 109 ] |
| 109 | 110 |
| 110 configs += [ | 111 configs += [ |
| 111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 112 "//build/config/compiler:no_size_t_to_int_warning", | 113 "//build/config/compiler:no_size_t_to_int_warning", |
| 113 ] | 114 ] |
| 114 } | 115 } |
| OLD | NEW |