| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "PlatformEventController.h", | 84 "PlatformEventController.h", |
| 85 "PlatformEventDispatcher.cpp", | 85 "PlatformEventDispatcher.cpp", |
| 86 "PlatformEventDispatcher.h", | 86 "PlatformEventDispatcher.h", |
| 87 "RemoteDOMWindow.cpp", | 87 "RemoteDOMWindow.cpp", |
| 88 "RemoteDOMWindow.h", | 88 "RemoteDOMWindow.h", |
| 89 "RemoteFrame.cpp", | 89 "RemoteFrame.cpp", |
| 90 "RemoteFrame.h", | 90 "RemoteFrame.h", |
| 91 "RemoteFrameClient.h", | 91 "RemoteFrameClient.h", |
| 92 "RemoteFrameView.cpp", | 92 "RemoteFrameView.cpp", |
| 93 "RemoteFrameView.h", | 93 "RemoteFrameView.h", |
| 94 "ResizeViewportAnchor.cpp", |
| 95 "ResizeViewportAnchor.h", |
| 94 "RootFrameViewport.cpp", | 96 "RootFrameViewport.cpp", |
| 95 "RootFrameViewport.h", | 97 "RootFrameViewport.h", |
| 98 "RotationViewportAnchor.cpp", |
| 99 "RotationViewportAnchor.h", |
| 96 "Screen.cpp", | 100 "Screen.cpp", |
| 97 "Screen.h", | 101 "Screen.h", |
| 98 "ScreenOrientationController.cpp", | 102 "ScreenOrientationController.cpp", |
| 99 "ScreenOrientationController.h", | 103 "ScreenOrientationController.h", |
| 100 "Settings.cpp", | 104 "Settings.cpp", |
| 101 "Settings.h", | 105 "Settings.h", |
| 102 "SettingsDelegate.cpp", | 106 "SettingsDelegate.cpp", |
| 103 "SettingsDelegate.h", | 107 "SettingsDelegate.h", |
| 104 "SmartClip.cpp", | 108 "SmartClip.cpp", |
| 105 "SmartClip.h", | 109 "SmartClip.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 124 "csp/MediaListDirective.h", | 128 "csp/MediaListDirective.h", |
| 125 "csp/SourceListDirective.cpp", | 129 "csp/SourceListDirective.cpp", |
| 126 "csp/SourceListDirective.h", | 130 "csp/SourceListDirective.h", |
| 127 ] | 131 ] |
| 128 | 132 |
| 129 configs += [ | 133 configs += [ |
| 130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 134 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 131 "//build/config/compiler:no_size_t_to_int_warning", | 135 "//build/config/compiler:no_size_t_to_int_warning", |
| 132 ] | 136 ] |
| 133 } | 137 } |
| OLD | NEW |