| 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 18 matching lines...) Expand all Loading... |
| 29 "AXMenuList.cpp", | 29 "AXMenuList.cpp", |
| 30 "AXMenuList.h", | 30 "AXMenuList.h", |
| 31 "AXMenuListOption.cpp", | 31 "AXMenuListOption.cpp", |
| 32 "AXMenuListOption.h", | 32 "AXMenuListOption.h", |
| 33 "AXMenuListPopup.cpp", | 33 "AXMenuListPopup.cpp", |
| 34 "AXMenuListPopup.h", | 34 "AXMenuListPopup.h", |
| 35 "AXMockObject.cpp", | 35 "AXMockObject.cpp", |
| 36 "AXMockObject.h", | 36 "AXMockObject.h", |
| 37 "AXNodeObject.cpp", | 37 "AXNodeObject.cpp", |
| 38 "AXNodeObject.h", | 38 "AXNodeObject.h", |
| 39 "AXObject.cpp", | |
| 40 "AXObject.h", | |
| 41 "AXObjectCacheImpl.cpp", | 39 "AXObjectCacheImpl.cpp", |
| 42 "AXObjectCacheImpl.h", | 40 "AXObjectCacheImpl.h", |
| 41 "AXObjectImpl.cpp", |
| 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 "AXSVGRoot.cpp", | 47 "AXSVGRoot.cpp", |
| 48 "AXSVGRoot.h", | 48 "AXSVGRoot.h", |
| 49 "AXSlider.cpp", | 49 "AXSlider.cpp", |
| 50 "AXSlider.h", | 50 "AXSlider.h", |
| 51 "AXSpinButton.cpp", | 51 "AXSpinButton.cpp", |
| 52 "AXSpinButton.h", | 52 "AXSpinButton.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 63 "InspectorAccessibilityAgent.cpp", | 63 "InspectorAccessibilityAgent.cpp", |
| 64 "InspectorAccessibilityAgent.h", | 64 "InspectorAccessibilityAgent.h", |
| 65 "InspectorTypeBuilderHelper.cpp", | 65 "InspectorTypeBuilderHelper.cpp", |
| 66 "InspectorTypeBuilderHelper.h", | 66 "InspectorTypeBuilderHelper.h", |
| 67 ] | 67 ] |
| 68 | 68 |
| 69 # The modules/accessibility/ depends closely on core/ -- | 69 # The modules/accessibility/ depends closely on core/ -- |
| 70 # include the core pch for faster Windows compilation times. | 70 # include the core pch for faster Windows compilation times. |
| 71 configs += [ "//third_party/WebKit/Source/core:blink_core_pch" ] | 71 configs += [ "//third_party/WebKit/Source/core:blink_core_pch" ] |
| 72 } | 72 } |
| OLD | NEW |