| 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 18 matching lines...) Expand all Loading... |
| 29 "Deprecation.h", | 29 "Deprecation.h", |
| 30 "DeviceSingleWindowEventController.cpp", | 30 "DeviceSingleWindowEventController.cpp", |
| 31 "DeviceSingleWindowEventController.h", | 31 "DeviceSingleWindowEventController.h", |
| 32 "EventHandlerRegistry.cpp", | 32 "EventHandlerRegistry.cpp", |
| 33 "EventHandlerRegistry.h", | 33 "EventHandlerRegistry.h", |
| 34 "External.h", | 34 "External.h", |
| 35 "Frame.cpp", | 35 "Frame.cpp", |
| 36 "Frame.h", | 36 "Frame.h", |
| 37 "FrameConsole.cpp", | 37 "FrameConsole.cpp", |
| 38 "FrameConsole.h", | 38 "FrameConsole.h", |
| 39 "FrameHost.cpp", | |
| 40 "FrameHost.h", | |
| 41 "FrameLifecycle.cpp", | 39 "FrameLifecycle.cpp", |
| 42 "FrameLifecycle.h", | 40 "FrameLifecycle.h", |
| 43 "FrameOwner.h", | 41 "FrameOwner.h", |
| 44 "FrameSerializer.cpp", | 42 "FrameSerializer.cpp", |
| 45 "FrameSerializer.h", | 43 "FrameSerializer.h", |
| 46 "FrameTypes.h", | 44 "FrameTypes.h", |
| 47 "FrameView.cpp", | 45 "FrameView.cpp", |
| 48 "FrameView.h", | 46 "FrameView.h", |
| 49 "FrameViewAutoSizeInfo.cpp", | 47 "FrameViewAutoSizeInfo.cpp", |
| 50 "FrameViewAutoSizeInfo.h", | 48 "FrameViewAutoSizeInfo.h", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "csp/MediaListDirective.h", | 116 "csp/MediaListDirective.h", |
| 119 "csp/SourceListDirective.cpp", | 117 "csp/SourceListDirective.cpp", |
| 120 "csp/SourceListDirective.h", | 118 "csp/SourceListDirective.h", |
| 121 ] | 119 ] |
| 122 | 120 |
| 123 configs += [ | 121 configs += [ |
| 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 122 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 125 "//build/config/compiler:no_size_t_to_int_warning", | 123 "//build/config/compiler:no_size_t_to_int_warning", |
| 126 ] | 124 ] |
| 127 } | 125 } |
| OLD | NEW |