Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: third_party/WebKit/Source/core/dom/BUILD.gn

Issue 2515363002: Introduce AnimationWorkletProxyClient and necessary plumbing to get it in worklet messaging proxy. (Closed)
Patch Set: Remove unnecessary PLATFORM_EXPORT Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("dom") { 7 blink_core_sources("dom") {
8 split_count = 5 8 split_count = 5
9 9
10 sources = [ 10 sources = [
11 "AXObjectCache.cpp", 11 "AXObjectCache.cpp",
12 "AXObjectCache.h", 12 "AXObjectCache.h",
13 "AnimationWorkletProxyClient.h",
13 "Attr.cpp", 14 "Attr.cpp",
14 "AttributeCollection.h", 15 "AttributeCollection.h",
15 "CDATASection.cpp", 16 "CDATASection.cpp",
16 "CDATASection.h", 17 "CDATASection.h",
17 "CSSSelectorWatch.cpp", 18 "CSSSelectorWatch.cpp",
18 "CharacterData.cpp", 19 "CharacterData.cpp",
19 "ChildFrameDisconnector.cpp", 20 "ChildFrameDisconnector.cpp",
20 "ChildFrameDisconnector.h", 21 "ChildFrameDisconnector.h",
21 "ChildListMutationScope.cpp", 22 "ChildListMutationScope.cpp",
22 "ChildListMutationScope.h", 23 "ChildListMutationScope.h",
23 "ChildNodeList.cpp", 24 "ChildNodeList.cpp",
24 "ChildNodeList.h", 25 "ChildNodeList.h",
25 "ClassCollection.cpp", 26 "ClassCollection.cpp",
26 "ClassCollection.h", 27 "ClassCollection.h",
27 "ClientRect.cpp", 28 "ClientRect.cpp",
28 "ClientRect.h", 29 "ClientRect.h",
29 "ClientRectList.cpp", 30 "ClientRectList.cpp",
30 "ClientRectList.h", 31 "ClientRectList.h",
31 "CollectionIndexCache.h", 32 "CollectionIndexCache.h",
32 "Comment.cpp", 33 "Comment.cpp",
33 "Comment.h", 34 "Comment.h",
34 "CompositorProxiedPropertySet.cpp", 35 "CompositorProxiedPropertySet.cpp",
35 "CompositorProxiedPropertySet.h", 36 "CompositorProxiedPropertySet.h",
36 "CompositorProxy.cpp", 37 "CompositorProxy.cpp",
37 "CompositorProxy.h", 38 "CompositorProxy.h",
38 "CompositorProxyClient.cpp",
39 "CompositorProxyClient.h", 39 "CompositorProxyClient.h",
40 "CompositorWorkerProxyClient.cpp",
41 "CompositorWorkerProxyClient.h",
40 "ContainerNode.cpp", 42 "ContainerNode.cpp",
41 "ContextFeatures.cpp", 43 "ContextFeatures.cpp",
42 "ContextFeatures.h", 44 "ContextFeatures.h",
43 "ContextLifecycleNotifier.cpp", 45 "ContextLifecycleNotifier.cpp",
44 "ContextLifecycleNotifier.h", 46 "ContextLifecycleNotifier.h",
45 "ContextLifecycleObserver.cpp", 47 "ContextLifecycleObserver.cpp",
46 "ContextLifecycleObserver.h", 48 "ContextLifecycleObserver.h",
47 "DOMArrayBuffer.cpp", 49 "DOMArrayBuffer.cpp",
48 "DOMArrayBuffer.h", 50 "DOMArrayBuffer.h",
49 "DOMArrayBufferBase.h", 51 "DOMArrayBufferBase.h",
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 "shadow/SlotAssignment.h", 407 "shadow/SlotAssignment.h",
406 "shadow/SlotScopedTraversal.cpp", 408 "shadow/SlotScopedTraversal.cpp",
407 "shadow/SlotScopedTraversal.h", 409 "shadow/SlotScopedTraversal.h",
408 ] 410 ]
409 411
410 configs += [ 412 configs += [
411 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 413 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
412 "//build/config/compiler:no_size_t_to_int_warning", 414 "//build/config/compiler:no_size_t_to_int_warning",
413 ] 415 ]
414 } 416 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698