mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
81 lines
2.1 KiB
Plaintext
81 lines
2.1 KiB
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//third_party/WebKit/Source/modules/modules.gni")
|
|
|
|
blink_modules_sources("accessibility") {
|
|
sources = [
|
|
"AXARIAGrid.cpp",
|
|
"AXARIAGrid.h",
|
|
"AXARIAGridCell.cpp",
|
|
"AXARIAGridCell.h",
|
|
"AXARIAGridRow.cpp",
|
|
"AXARIAGridRow.h",
|
|
"AXEnums.cpp",
|
|
"AXEnums.h",
|
|
"AXImageMapLink.cpp",
|
|
"AXImageMapLink.h",
|
|
"AXInlineTextBox.cpp",
|
|
"AXInlineTextBox.h",
|
|
"AXLayoutObject.cpp",
|
|
"AXLayoutObject.h",
|
|
"AXList.cpp",
|
|
"AXList.h",
|
|
"AXListBox.cpp",
|
|
"AXListBox.h",
|
|
"AXListBoxOption.cpp",
|
|
"AXListBoxOption.h",
|
|
"AXMediaControls.cpp",
|
|
"AXMediaControls.h",
|
|
"AXMenuList.cpp",
|
|
"AXMenuList.h",
|
|
"AXMenuListOption.cpp",
|
|
"AXMenuListOption.h",
|
|
"AXMenuListPopup.cpp",
|
|
"AXMenuListPopup.h",
|
|
"AXMockObject.cpp",
|
|
"AXMockObject.h",
|
|
"AXNodeObject.cpp",
|
|
"AXNodeObject.h",
|
|
"AXObject.cpp",
|
|
"AXObject.h",
|
|
"AXObjectCacheImpl.cpp",
|
|
"AXObjectCacheImpl.h",
|
|
"AXProgressIndicator.cpp",
|
|
"AXProgressIndicator.h",
|
|
"AXRadioInput.cpp",
|
|
"AXRadioInput.h",
|
|
"AXRelationCache.cpp",
|
|
"AXRelationCache.h",
|
|
"AXSVGRoot.cpp",
|
|
"AXSVGRoot.h",
|
|
"AXSlider.cpp",
|
|
"AXSlider.h",
|
|
"AXSparseAttributeSetter.cpp",
|
|
"AXSparseAttributeSetter.h",
|
|
"AXSpinButton.cpp",
|
|
"AXSpinButton.h",
|
|
"AXTable.cpp",
|
|
"AXTable.h",
|
|
"AXTableCell.cpp",
|
|
"AXTableCell.h",
|
|
"AXTableColumn.cpp",
|
|
"AXTableColumn.h",
|
|
"AXTableHeaderContainer.cpp",
|
|
"AXTableHeaderContainer.h",
|
|
"AXTableRow.cpp",
|
|
"AXTableRow.h",
|
|
"AXVirtualObject.cpp",
|
|
"AXVirtualObject.h",
|
|
"InspectorAccessibilityAgent.cpp",
|
|
"InspectorAccessibilityAgent.h",
|
|
"InspectorTypeBuilderHelper.cpp",
|
|
"InspectorTypeBuilderHelper.h",
|
|
]
|
|
|
|
# The modules/accessibility/ depends closely on core/ --
|
|
# include the core pch for faster Windows compilation times.
|
|
configs += [ "//third_party/WebKit/Source/core:blink_core_pch" ]
|
|
}
|