| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "LayoutSubtreeRootList.h", | 59 "LayoutSubtreeRootList.h", |
| 60 "LocalDOMWindow.cpp", | 60 "LocalDOMWindow.cpp", |
| 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 "Location.cpp", | 65 "Location.cpp", |
| 66 "Location.h", | 66 "Location.h", |
| 67 "Navigator.cpp", | 67 "Navigator.cpp", |
| 68 "Navigator.h", | 68 "Navigator.h", |
| 69 "NavigatorCPU.cpp", | 69 "NavigatorConcurrentHardware.cpp", |
| 70 "NavigatorCPU.h", | 70 "NavigatorConcurrentHardware.h", |
| 71 "NavigatorID.cpp", | 71 "NavigatorID.cpp", |
| 72 "NavigatorID.h", | 72 "NavigatorID.h", |
| 73 "NavigatorLanguage.cpp", | 73 "NavigatorLanguage.cpp", |
| 74 "NavigatorLanguage.h", | 74 "NavigatorLanguage.h", |
| 75 "NavigatorOnLine.h", | 75 "NavigatorOnLine.h", |
| 76 "PageScaleConstraints.cpp", | 76 "PageScaleConstraints.cpp", |
| 77 "PageScaleConstraints.h", | 77 "PageScaleConstraints.h", |
| 78 "PageScaleConstraintsSet.cpp", | 78 "PageScaleConstraintsSet.cpp", |
| 79 "PageScaleConstraintsSet.h", | 79 "PageScaleConstraintsSet.h", |
| 80 "PerformanceMonitor.cpp", | 80 "PerformanceMonitor.cpp", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "csp/MediaListDirective.h", | 121 "csp/MediaListDirective.h", |
| 122 "csp/SourceListDirective.cpp", | 122 "csp/SourceListDirective.cpp", |
| 123 "csp/SourceListDirective.h", | 123 "csp/SourceListDirective.h", |
| 124 ] | 124 ] |
| 125 | 125 |
| 126 configs += [ | 126 configs += [ |
| 127 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 127 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 128 "//build/config/compiler:no_size_t_to_int_warning", | 128 "//build/config/compiler:no_size_t_to_int_warning", |
| 129 ] | 129 ] |
| 130 } | 130 } |
| OLD | NEW |