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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/BUILD.gn

Issue 2750533006: Initial skeleton of Accessibility Object Model Phase 1 (Closed)
Patch Set: 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/modules/modules.gni") 5 import("//third_party/WebKit/Source/modules/modules.gni")
6 6
7 blink_modules_sources("accessibility") { 7 blink_modules_sources("accessibility") {
8 sources = [ 8 sources = [
9 "AXARIAGrid.cpp", 9 "AXARIAGrid.cpp",
10 "AXARIAGrid.h", 10 "AXARIAGrid.h",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "AXTable.cpp", 53 "AXTable.cpp",
54 "AXTable.h", 54 "AXTable.h",
55 "AXTableCell.cpp", 55 "AXTableCell.cpp",
56 "AXTableCell.h", 56 "AXTableCell.h",
57 "AXTableColumn.cpp", 57 "AXTableColumn.cpp",
58 "AXTableColumn.h", 58 "AXTableColumn.h",
59 "AXTableHeaderContainer.cpp", 59 "AXTableHeaderContainer.cpp",
60 "AXTableHeaderContainer.h", 60 "AXTableHeaderContainer.h",
61 "AXTableRow.cpp", 61 "AXTableRow.cpp",
62 "AXTableRow.h", 62 "AXTableRow.h",
63 "AccessibleNode.cpp",
64 "AccessibleNode.h",
65 "ElementAccessibleNode.cpp",
66 "ElementAccessibleNode.h",
63 "InspectorAccessibilityAgent.cpp", 67 "InspectorAccessibilityAgent.cpp",
64 "InspectorAccessibilityAgent.h", 68 "InspectorAccessibilityAgent.h",
65 "InspectorTypeBuilderHelper.cpp", 69 "InspectorTypeBuilderHelper.cpp",
66 "InspectorTypeBuilderHelper.h", 70 "InspectorTypeBuilderHelper.h",
67 ] 71 ]
68 72
69 # The modules/accessibility/ depends closely on core/ -- 73 # The modules/accessibility/ depends closely on core/ --
70 # include the core pch for faster Windows compilation times. 74 # include the core pch for faster Windows compilation times.
71 configs += [ "//third_party/WebKit/Source/core:blink_core_pch" ] 75 configs += [ "//third_party/WebKit/Source/core:blink_core_pch" ]
72 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698