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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "LocalDOMWindow.cpp", | 54 "LocalDOMWindow.cpp", |
55 "LocalDOMWindow.h", | 55 "LocalDOMWindow.h", |
56 "LocalFrame.cpp", | 56 "LocalFrame.cpp", |
57 "LocalFrame.h", | 57 "LocalFrame.h", |
58 "Location.cpp", | 58 "Location.cpp", |
59 "Location.h", | 59 "Location.h", |
60 "Navigator.cpp", | 60 "Navigator.cpp", |
61 "Navigator.h", | 61 "Navigator.h", |
62 "NavigatorCPU.cpp", | 62 "NavigatorCPU.cpp", |
63 "NavigatorCPU.h", | 63 "NavigatorCPU.h", |
| 64 "NavigatorClipboard.cpp", |
| 65 "NavigatorClipboard.h", |
64 "NavigatorID.cpp", | 66 "NavigatorID.cpp", |
65 "NavigatorID.h", | 67 "NavigatorID.h", |
66 "NavigatorLanguage.cpp", | 68 "NavigatorLanguage.cpp", |
67 "NavigatorLanguage.h", | 69 "NavigatorLanguage.h", |
68 "NavigatorOnLine.h", | 70 "NavigatorOnLine.h", |
69 "PageScaleConstraints.cpp", | 71 "PageScaleConstraints.cpp", |
70 "PageScaleConstraints.h", | 72 "PageScaleConstraints.h", |
71 "PageScaleConstraintsSet.cpp", | 73 "PageScaleConstraintsSet.cpp", |
72 "PageScaleConstraintsSet.h", | 74 "PageScaleConstraintsSet.h", |
73 "PerformanceMonitor.cpp", | 75 "PerformanceMonitor.cpp", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "csp/ContentSecurityPolicy.cpp", | 108 "csp/ContentSecurityPolicy.cpp", |
107 "csp/MediaListDirective.cpp", | 109 "csp/MediaListDirective.cpp", |
108 "csp/SourceListDirective.cpp", | 110 "csp/SourceListDirective.cpp", |
109 ] | 111 ] |
110 | 112 |
111 configs += [ | 113 configs += [ |
112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
113 "//build/config/compiler:no_size_t_to_int_warning", | 115 "//build/config/compiler:no_size_t_to_int_warning", |
114 ] | 116 ] |
115 } | 117 } |
OLD | NEW |