| OLD | NEW |
| 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 26 matching lines...) Expand all Loading... |
| 37 "AXNodeObject.cpp", | 37 "AXNodeObject.cpp", |
| 38 "AXNodeObject.h", | 38 "AXNodeObject.h", |
| 39 "AXObjectCacheImpl.cpp", | 39 "AXObjectCacheImpl.cpp", |
| 40 "AXObjectCacheImpl.h", | 40 "AXObjectCacheImpl.h", |
| 41 "AXObjectImpl.cpp", | 41 "AXObjectImpl.cpp", |
| 42 "AXObjectImpl.h", | 42 "AXObjectImpl.h", |
| 43 "AXProgressIndicator.cpp", | 43 "AXProgressIndicator.cpp", |
| 44 "AXProgressIndicator.h", | 44 "AXProgressIndicator.h", |
| 45 "AXRadioInput.cpp", | 45 "AXRadioInput.cpp", |
| 46 "AXRadioInput.h", | 46 "AXRadioInput.h", |
| 47 "AXRange.cpp", |
| 48 "AXRange.h", |
| 47 "AXSVGRoot.cpp", | 49 "AXSVGRoot.cpp", |
| 48 "AXSVGRoot.h", | 50 "AXSVGRoot.h", |
| 49 "AXSlider.cpp", | 51 "AXSlider.cpp", |
| 50 "AXSlider.h", | 52 "AXSlider.h", |
| 51 "AXSpinButton.cpp", | 53 "AXSpinButton.cpp", |
| 52 "AXSpinButton.h", | 54 "AXSpinButton.h", |
| 53 "AXTable.cpp", | 55 "AXTable.cpp", |
| 54 "AXTable.h", | 56 "AXTable.h", |
| 55 "AXTableCell.cpp", | 57 "AXTableCell.cpp", |
| 56 "AXTableCell.h", | 58 "AXTableCell.h", |
| 57 "AXTableColumn.cpp", | 59 "AXTableColumn.cpp", |
| 58 "AXTableColumn.h", | 60 "AXTableColumn.h", |
| 59 "AXTableHeaderContainer.cpp", | 61 "AXTableHeaderContainer.cpp", |
| 60 "AXTableHeaderContainer.h", | 62 "AXTableHeaderContainer.h", |
| 61 "AXTableRow.cpp", | 63 "AXTableRow.cpp", |
| 62 "AXTableRow.h", | 64 "AXTableRow.h", |
| 63 "InspectorAccessibilityAgent.cpp", | 65 "InspectorAccessibilityAgent.cpp", |
| 64 "InspectorAccessibilityAgent.h", | 66 "InspectorAccessibilityAgent.h", |
| 65 "InspectorTypeBuilderHelper.cpp", | 67 "InspectorTypeBuilderHelper.cpp", |
| 66 "InspectorTypeBuilderHelper.h", | 68 "InspectorTypeBuilderHelper.h", |
| 67 ] | 69 ] |
| 68 | 70 |
| 69 # The modules/accessibility/ depends closely on core/ -- | 71 # The modules/accessibility/ depends closely on core/ -- |
| 70 # include the core pch for faster Windows compilation times. | 72 # include the core pch for faster Windows compilation times. |
| 71 configs += [ "//third_party/WebKit/Source/core:blink_core_pch" ] | 73 configs += [ "//third_party/WebKit/Source/core:blink_core_pch" ] |
| 72 } | 74 } |
| OLD | NEW |