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

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

Issue 2750533006: Initial skeleton of Accessibility Object Model Phase 1 (Closed)
Patch Set: Address feedback Created 3 years, 9 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 "AccessibleNode.cpp",
14 "AccessibleNode.h",
13 "AnimationWorkletProxyClient.h", 15 "AnimationWorkletProxyClient.h",
14 "Attr.cpp", 16 "Attr.cpp",
15 "AttributeCollection.h", 17 "AttributeCollection.h",
16 "CDATASection.cpp", 18 "CDATASection.cpp",
17 "CDATASection.h", 19 "CDATASection.h",
18 "CSSSelectorWatch.cpp", 20 "CSSSelectorWatch.cpp",
19 "CharacterData.cpp", 21 "CharacterData.cpp",
20 "ChildFrameDisconnector.cpp", 22 "ChildFrameDisconnector.cpp",
21 "ChildFrameDisconnector.h", 23 "ChildFrameDisconnector.h",
22 "ChildListMutationScope.cpp", 24 "ChildListMutationScope.cpp",
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 "shadow/SlotAssignment.h", 414 "shadow/SlotAssignment.h",
413 "shadow/SlotScopedTraversal.cpp", 415 "shadow/SlotScopedTraversal.cpp",
414 "shadow/SlotScopedTraversal.h", 416 "shadow/SlotScopedTraversal.h",
415 ] 417 ]
416 418
417 configs += [ 419 configs += [
418 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 420 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
419 "//build/config/compiler:no_size_t_to_int_warning", 421 "//build/config/compiler:no_size_t_to_int_warning",
420 ] 422 ]
421 } 423 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698