| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "RemoteFrameClient.h", | 88 "RemoteFrameClient.h", |
| 89 "RemoteFrameView.cpp", | 89 "RemoteFrameView.cpp", |
| 90 "RemoteFrameView.h", | 90 "RemoteFrameView.h", |
| 91 "RootFrameViewport.cpp", | 91 "RootFrameViewport.cpp", |
| 92 "RootFrameViewport.h", | 92 "RootFrameViewport.h", |
| 93 "Screen.cpp", | 93 "Screen.cpp", |
| 94 "Screen.h", | 94 "Screen.h", |
| 95 "ScreenOrientationController.cpp", | 95 "ScreenOrientationController.cpp", |
| 96 "ScreenOrientationController.h", | 96 "ScreenOrientationController.h", |
| 97 "Settings.cpp", | 97 "Settings.cpp", |
| 98 "Settings.h", |
| 98 "SettingsDelegate.cpp", | 99 "SettingsDelegate.cpp", |
| 99 "SettingsDelegate.h", | 100 "SettingsDelegate.h", |
| 100 "SmartClip.cpp", | 101 "SmartClip.cpp", |
| 101 "SmartClip.h", | 102 "SmartClip.h", |
| 102 "SubresourceIntegrity.cpp", | 103 "SubresourceIntegrity.cpp", |
| 103 "SubresourceIntegrity.h", | 104 "SubresourceIntegrity.h", |
| 104 "SuspendableTimer.cpp", | 105 "SuspendableTimer.cpp", |
| 105 "SuspendableTimer.h", | 106 "SuspendableTimer.h", |
| 106 "UseCounter.cpp", | 107 "UseCounter.cpp", |
| 107 "UseCounter.h", | 108 "UseCounter.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 118 "csp/MediaListDirective.h", | 119 "csp/MediaListDirective.h", |
| 119 "csp/SourceListDirective.cpp", | 120 "csp/SourceListDirective.cpp", |
| 120 "csp/SourceListDirective.h", | 121 "csp/SourceListDirective.h", |
| 121 ] | 122 ] |
| 122 | 123 |
| 123 configs += [ | 124 configs += [ |
| 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 125 "//build/config/compiler:no_size_t_to_int_warning", | 126 "//build/config/compiler:no_size_t_to_int_warning", |
| 126 ] | 127 ] |
| 127 } | 128 } |
| OLD | NEW |