| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "LayoutSubtreeRootList.h", | 60 "LayoutSubtreeRootList.h", |
| 61 "LocalDOMWindow.cpp", | 61 "LocalDOMWindow.cpp", |
| 62 "LocalDOMWindow.h", | 62 "LocalDOMWindow.h", |
| 63 "LocalFrame.cpp", | 63 "LocalFrame.cpp", |
| 64 "LocalFrame.h", | 64 "LocalFrame.h", |
| 65 "LocalFrameClient.h", | 65 "LocalFrameClient.h", |
| 66 "Location.cpp", | 66 "Location.cpp", |
| 67 "Location.h", | 67 "Location.h", |
| 68 "Navigator.cpp", | 68 "Navigator.cpp", |
| 69 "Navigator.h", | 69 "Navigator.h", |
| 70 "NavigatorClipboard.cpp", |
| 71 "NavigatorClipboard.h", |
| 70 "NavigatorConcurrentHardware.cpp", | 72 "NavigatorConcurrentHardware.cpp", |
| 71 "NavigatorConcurrentHardware.h", | 73 "NavigatorConcurrentHardware.h", |
| 72 "NavigatorID.cpp", | 74 "NavigatorID.cpp", |
| 73 "NavigatorID.h", | 75 "NavigatorID.h", |
| 74 "NavigatorLanguage.cpp", | 76 "NavigatorLanguage.cpp", |
| 75 "NavigatorLanguage.h", | 77 "NavigatorLanguage.h", |
| 76 "NavigatorOnLine.h", | 78 "NavigatorOnLine.h", |
| 77 "PageScaleConstraints.cpp", | 79 "PageScaleConstraints.cpp", |
| 78 "PageScaleConstraints.h", | 80 "PageScaleConstraints.h", |
| 79 "PageScaleConstraintsSet.cpp", | 81 "PageScaleConstraintsSet.cpp", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "csp/MediaListDirective.h", | 132 "csp/MediaListDirective.h", |
| 131 "csp/SourceListDirective.cpp", | 133 "csp/SourceListDirective.cpp", |
| 132 "csp/SourceListDirective.h", | 134 "csp/SourceListDirective.h", |
| 133 ] | 135 ] |
| 134 | 136 |
| 135 configs += [ | 137 configs += [ |
| 136 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 138 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 137 "//build/config/compiler:no_size_t_to_int_warning", | 139 "//build/config/compiler:no_size_t_to_int_warning", |
| 138 ] | 140 ] |
| 139 } | 141 } |
| OLD | NEW |