| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "LocalDOMWindow.h", | 61 "LocalDOMWindow.h", |
| 62 "LocalFrame.cpp", | 62 "LocalFrame.cpp", |
| 63 "LocalFrame.h", | 63 "LocalFrame.h", |
| 64 "LocalFrameClient.h", | 64 "LocalFrameClient.h", |
| 65 "LocalFrameView.cpp", | 65 "LocalFrameView.cpp", |
| 66 "LocalFrameView.h", | 66 "LocalFrameView.h", |
| 67 "Location.cpp", | 67 "Location.cpp", |
| 68 "Location.h", | 68 "Location.h", |
| 69 "Navigator.cpp", | 69 "Navigator.cpp", |
| 70 "Navigator.h", | 70 "Navigator.h", |
| 71 "NavigatorClipboard.cpp", |
| 72 "NavigatorClipboard.h", |
| 71 "NavigatorConcurrentHardware.cpp", | 73 "NavigatorConcurrentHardware.cpp", |
| 72 "NavigatorConcurrentHardware.h", | 74 "NavigatorConcurrentHardware.h", |
| 73 "NavigatorID.cpp", | 75 "NavigatorID.cpp", |
| 74 "NavigatorID.h", | 76 "NavigatorID.h", |
| 75 "NavigatorLanguage.cpp", | 77 "NavigatorLanguage.cpp", |
| 76 "NavigatorLanguage.h", | 78 "NavigatorLanguage.h", |
| 77 "NavigatorOnLine.h", | 79 "NavigatorOnLine.h", |
| 78 "OpenedFrameTracker.cpp", | 80 "OpenedFrameTracker.cpp", |
| 79 "OpenedFrameTracker.h", | 81 "OpenedFrameTracker.h", |
| 80 "PageScaleConstraints.cpp", | 82 "PageScaleConstraints.cpp", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "csp/MediaListDirective.h", | 147 "csp/MediaListDirective.h", |
| 146 "csp/SourceListDirective.cpp", | 148 "csp/SourceListDirective.cpp", |
| 147 "csp/SourceListDirective.h", | 149 "csp/SourceListDirective.h", |
| 148 ] | 150 ] |
| 149 | 151 |
| 150 configs += [ | 152 configs += [ |
| 151 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 153 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 152 "//build/config/compiler:no_size_t_to_int_warning", | 154 "//build/config/compiler:no_size_t_to_int_warning", |
| 153 ] | 155 ] |
| 154 } | 156 } |
| OLD | NEW |