| 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 23 matching lines...) Expand all Loading... |
| 34 "EventHandlerRegistry.cpp", | 34 "EventHandlerRegistry.cpp", |
| 35 "EventHandlerRegistry.h", | 35 "EventHandlerRegistry.h", |
| 36 "External.h", | 36 "External.h", |
| 37 "Frame.cpp", | 37 "Frame.cpp", |
| 38 "Frame.h", | 38 "Frame.h", |
| 39 "FrameClient.h", | 39 "FrameClient.h", |
| 40 "FrameConsole.cpp", | 40 "FrameConsole.cpp", |
| 41 "FrameConsole.h", | 41 "FrameConsole.h", |
| 42 "FrameLifecycle.cpp", | 42 "FrameLifecycle.cpp", |
| 43 "FrameLifecycle.h", | 43 "FrameLifecycle.h", |
| 44 "FrameOrPlugin.h", |
| 44 "FrameOwner.h", | 45 "FrameOwner.h", |
| 45 "FrameSerializer.cpp", | 46 "FrameSerializer.cpp", |
| 46 "FrameSerializer.h", | 47 "FrameSerializer.h", |
| 47 "FrameTypes.h", | 48 "FrameTypes.h", |
| 48 "FrameView.cpp", | 49 "FrameView.cpp", |
| 49 "FrameView.h", | 50 "FrameView.h", |
| 50 "FrameViewAutoSizeInfo.cpp", | 51 "FrameViewAutoSizeInfo.cpp", |
| 51 "FrameViewAutoSizeInfo.h", | 52 "FrameViewAutoSizeInfo.h", |
| 52 "History.cpp", | 53 "History.cpp", |
| 53 "History.h", | 54 "History.h", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "csp/MediaListDirective.h", | 122 "csp/MediaListDirective.h", |
| 122 "csp/SourceListDirective.cpp", | 123 "csp/SourceListDirective.cpp", |
| 123 "csp/SourceListDirective.h", | 124 "csp/SourceListDirective.h", |
| 124 ] | 125 ] |
| 125 | 126 |
| 126 configs += [ | 127 configs += [ |
| 127 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 128 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 128 "//build/config/compiler:no_size_t_to_int_warning", | 129 "//build/config/compiler:no_size_t_to_int_warning", |
| 129 ] | 130 ] |
| 130 } | 131 } |
| OLD | NEW |