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

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: address feedback Created 4 years 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 "ActiveDOMObject.cpp", 13 "ActiveDOMObject.cpp",
14 "AnimationWorkletProxyClient.h",
14 "Attr.cpp", 15 "Attr.cpp",
15 "AttributeCollection.h", 16 "AttributeCollection.h",
16 "CDATASection.cpp", 17 "CDATASection.cpp",
17 "CDATASection.h", 18 "CDATASection.h",
18 "CSSSelectorWatch.cpp", 19 "CSSSelectorWatch.cpp",
19 "CharacterData.cpp", 20 "CharacterData.cpp",
20 "ChildFrameDisconnector.cpp", 21 "ChildFrameDisconnector.cpp",
21 "ChildFrameDisconnector.h", 22 "ChildFrameDisconnector.h",
22 "ChildListMutationScope.cpp", 23 "ChildListMutationScope.cpp",
23 "ChildListMutationScope.h", 24 "ChildListMutationScope.h",
24 "ChildNodeList.cpp", 25 "ChildNodeList.cpp",
25 "ChildNodeList.h", 26 "ChildNodeList.h",
26 "ClassCollection.cpp", 27 "ClassCollection.cpp",
27 "ClassCollection.h", 28 "ClassCollection.h",
28 "ClientRect.cpp", 29 "ClientRect.cpp",
29 "ClientRect.h", 30 "ClientRect.h",
30 "ClientRectList.cpp", 31 "ClientRectList.cpp",
31 "ClientRectList.h", 32 "ClientRectList.h",
32 "CollectionIndexCache.h", 33 "CollectionIndexCache.h",
33 "Comment.cpp", 34 "Comment.cpp",
34 "Comment.h", 35 "Comment.h",
35 "CompositorProxiedPropertySet.cpp", 36 "CompositorProxiedPropertySet.cpp",
36 "CompositorProxiedPropertySet.h", 37 "CompositorProxiedPropertySet.h",
37 "CompositorProxy.cpp", 38 "CompositorProxy.cpp",
38 "CompositorProxy.h", 39 "CompositorProxy.h",
39 "CompositorProxyClient.cpp",
40 "CompositorProxyClient.h", 40 "CompositorProxyClient.h",
41 "CompositorProxyClientFactory.h",
42 "CompositorWorkerProxyClient.cpp",
43 "CompositorWorkerProxyClient.h",
41 "ContainerNode.cpp", 44 "ContainerNode.cpp",
42 "ContextFeatures.cpp", 45 "ContextFeatures.cpp",
43 "ContextFeatures.h", 46 "ContextFeatures.h",
44 "ContextLifecycleNotifier.cpp", 47 "ContextLifecycleNotifier.cpp",
45 "ContextLifecycleNotifier.h", 48 "ContextLifecycleNotifier.h",
46 "ContextLifecycleObserver.h", 49 "ContextLifecycleObserver.h",
47 "DOMArrayBuffer.cpp", 50 "DOMArrayBuffer.cpp",
48 "DOMArrayBuffer.h", 51 "DOMArrayBuffer.h",
49 "DOMArrayBufferBase.h", 52 "DOMArrayBufferBase.h",
50 "DOMArrayBufferView.h", 53 "DOMArrayBufferView.h",
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 "shadow/SlotAssignment.h", 395 "shadow/SlotAssignment.h",
393 "shadow/SlotScopedTraversal.cpp", 396 "shadow/SlotScopedTraversal.cpp",
394 "shadow/SlotScopedTraversal.h", 397 "shadow/SlotScopedTraversal.h",
395 ] 398 ]
396 399
397 configs += [ 400 configs += [
398 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 401 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
399 "//build/config/compiler:no_size_t_to_int_warning", 402 "//build/config/compiler:no_size_t_to_int_warning",
400 ] 403 ]
401 } 404 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698