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 "PageScaleConstraints.cpp", | 80 "PageScaleConstraints.cpp", |
79 "PageScaleConstraints.h", | 81 "PageScaleConstraints.h", |
80 "PageScaleConstraintsSet.cpp", | 82 "PageScaleConstraintsSet.cpp", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 "csp/MediaListDirective.h", | 139 "csp/MediaListDirective.h", |
138 "csp/SourceListDirective.cpp", | 140 "csp/SourceListDirective.cpp", |
139 "csp/SourceListDirective.h", | 141 "csp/SourceListDirective.h", |
140 ] | 142 ] |
141 | 143 |
142 configs += [ | 144 configs += [ |
143 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 145 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
144 "//build/config/compiler:no_size_t_to_int_warning", | 146 "//build/config/compiler:no_size_t_to_int_warning", |
145 ] | 147 ] |
146 } | 148 } |
OLD | NEW |