| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//sky/engine/build/scripts/scripts.gni") | 6 import("//sky/engine/build/scripts/scripts.gni") |
| 7 import("//sky/engine/config.gni") | 7 import("//sky/engine/config.gni") |
| 8 | 8 |
| 9 # Most targets in this file are private actions so use that as the default. | 9 # Most targets in this file are private actions so use that as the default. |
| 10 visibility = [":*"] | 10 visibility = [":*"] |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "exported/WebArrayBuffer.cpp", | 122 "exported/WebArrayBuffer.cpp", |
| 123 "exported/WebCommon.cpp", | 123 "exported/WebCommon.cpp", |
| 124 "exported/WebConvertableToTraceFormat.cpp", | 124 "exported/WebConvertableToTraceFormat.cpp", |
| 125 "exported/WebCString.cpp", | 125 "exported/WebCString.cpp", |
| 126 "exported/WebCursorInfo.cpp", | 126 "exported/WebCursorInfo.cpp", |
| 127 "exported/WebData.cpp", | 127 "exported/WebData.cpp", |
| 128 "exported/WebFilterKeyframe.cpp", | 128 "exported/WebFilterKeyframe.cpp", |
| 129 "exported/WebHTTPBody.cpp", | 129 "exported/WebHTTPBody.cpp", |
| 130 "exported/WebHTTPLoadInfo.cpp", | 130 "exported/WebHTTPLoadInfo.cpp", |
| 131 "exported/WebImageSkia.cpp", | 131 "exported/WebImageSkia.cpp", |
| 132 "exported/WebScrollbarImpl.cpp", | |
| 133 "exported/WebScrollbarImpl.h", | |
| 134 "exported/WebScrollbarThemeGeometryNative.cpp", | |
| 135 "exported/WebScrollbarThemeGeometryNative.h", | |
| 136 "exported/WebString.cpp", | 132 "exported/WebString.cpp", |
| 137 "exported/WebTransformKeyframe.cpp", | 133 "exported/WebTransformKeyframe.cpp", |
| 138 "exported/WebURL.cpp", | 134 "exported/WebURL.cpp", |
| 139 "exported/WebURLError.cpp", | 135 "exported/WebURLError.cpp", |
| 140 "exported/WebURLLoadTiming.cpp", | 136 "exported/WebURLLoadTiming.cpp", |
| 141 "exported/WebURLRequest.cpp", | 137 "exported/WebURLRequest.cpp", |
| 142 "exported/WebURLRequestPrivate.h", | 138 "exported/WebURLRequestPrivate.h", |
| 143 "exported/WebURLResponse.cpp", | 139 "exported/WebURLResponse.cpp", |
| 144 "exported/WebURLResponsePrivate.h", | 140 "exported/WebURLResponsePrivate.h", |
| 145 "exported/WrappedResourceRequest.h", | 141 "exported/WrappedResourceRequest.h", |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 "PlatformThreadData.cpp", | 507 "PlatformThreadData.cpp", |
| 512 "PlatformThreadData.h", | 508 "PlatformThreadData.h", |
| 513 "PlatformTouchEvent.h", | 509 "PlatformTouchEvent.h", |
| 514 "PlatformTouchPoint.h", | 510 "PlatformTouchPoint.h", |
| 515 "PlatformWheelEvent.h", | 511 "PlatformWheelEvent.h", |
| 516 "PurgeableVector.cpp", | 512 "PurgeableVector.cpp", |
| 517 "PurgeableVector.h", | 513 "PurgeableVector.h", |
| 518 "RefCountedSupplement.h", | 514 "RefCountedSupplement.h", |
| 519 "ScriptForbiddenScope.cpp", | 515 "ScriptForbiddenScope.cpp", |
| 520 "ScriptForbiddenScope.h", | 516 "ScriptForbiddenScope.h", |
| 521 "scroll/ProgrammaticScrollAnimator.cpp", | |
| 522 "scroll/ProgrammaticScrollAnimator.h", | |
| 523 "scroll/ScrollableArea.cpp", | 517 "scroll/ScrollableArea.cpp", |
| 524 "scroll/ScrollableArea.h", | 518 "scroll/ScrollableArea.h", |
| 525 "scroll/ScrollAnimator.cpp", | 519 "scroll/ScrollAnimator.cpp", |
| 526 "scroll/ScrollAnimator.h", | 520 "scroll/ScrollAnimator.h", |
| 527 "scroll/Scrollbar.cpp", | 521 "scroll/Scrollbar.cpp", |
| 528 "scroll/Scrollbar.h", | 522 "scroll/Scrollbar.h", |
| 529 "scroll/ScrollTypes.h", | 523 "scroll/ScrollTypes.h", |
| 530 "SharedBuffer.cpp", | 524 "SharedBuffer.cpp", |
| 531 "SharedBuffer.h", | 525 "SharedBuffer.h", |
| 532 "SharedBufferChunkReader.cpp", | 526 "SharedBufferChunkReader.cpp", |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 806 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
| 813 # TODO(GYP) | 807 # TODO(GYP) |
| 814 #'cflags': ['-marm'], | 808 #'cflags': ['-marm'], |
| 815 # 'conditions': [ | 809 # 'conditions': [ |
| 816 # ['OS=="android"', { | 810 # ['OS=="android"', { |
| 817 # 'cflags!': ['-mthumb'], | 811 # 'cflags!': ['-mthumb'], |
| 818 # }], | 812 # }], |
| 819 # ], | 813 # ], |
| 820 } | 814 } |
| 821 } | 815 } |
| OLD | NEW |