| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//third_party/WebKit/public/public_features.gni") | 7 import("//third_party/WebKit/public/public_features.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/core/core.gni") | 9 import("//third_party/WebKit/Source/core/core.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "platform/WebAudioBus.h", | 113 "platform/WebAudioBus.h", |
| 114 "platform/WebAudioDestinationConsumer.h", | 114 "platform/WebAudioDestinationConsumer.h", |
| 115 "platform/WebAudioDevice.h", | 115 "platform/WebAudioDevice.h", |
| 116 "platform/WebAudioSourceProvider.h", | 116 "platform/WebAudioSourceProvider.h", |
| 117 "platform/WebAudioSourceProviderClient.h", | 117 "platform/WebAudioSourceProviderClient.h", |
| 118 "platform/WebBlendMode.h", | 118 "platform/WebBlendMode.h", |
| 119 "platform/WebBlobData.h", | 119 "platform/WebBlobData.h", |
| 120 "platform/WebBlobInfo.h", | 120 "platform/WebBlobInfo.h", |
| 121 "platform/WebBlobRegistry.h", | 121 "platform/WebBlobRegistry.h", |
| 122 "platform/WebCString.h", | 122 "platform/WebCString.h", |
| 123 "platform/WebCache.h", |
| 123 "platform/WebCallbacks.h", | 124 "platform/WebCallbacks.h", |
| 124 "platform/WebCanvas.h", | 125 "platform/WebCanvas.h", |
| 125 "platform/WebCanvasCaptureHandler.h", | 126 "platform/WebCanvasCaptureHandler.h", |
| 126 "platform/WebClipboard.h", | 127 "platform/WebClipboard.h", |
| 127 "platform/WebCoalescedInputEvent.h", | 128 "platform/WebCoalescedInputEvent.h", |
| 128 "platform/WebColor.h", | 129 "platform/WebColor.h", |
| 129 "platform/WebCommon.h", | 130 "platform/WebCommon.h", |
| 130 "platform/WebCompositeAndReadbackAsyncCallback.h", | 131 "platform/WebCompositeAndReadbackAsyncCallback.h", |
| 131 "platform/WebCompositorSupport.h", | 132 "platform/WebCompositorSupport.h", |
| 132 "platform/WebConnectionType.h", | 133 "platform/WebConnectionType.h", |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 "web/WebAXEnums.h", | 427 "web/WebAXEnums.h", |
| 427 "web/WebAXObject.h", | 428 "web/WebAXObject.h", |
| 428 "web/WebActiveWheelFlingParameters.h", | 429 "web/WebActiveWheelFlingParameters.h", |
| 429 "web/WebArrayBuffer.h", | 430 "web/WebArrayBuffer.h", |
| 430 "web/WebArrayBufferConverter.h", | 431 "web/WebArrayBufferConverter.h", |
| 431 "web/WebArrayBufferView.h", | 432 "web/WebArrayBufferView.h", |
| 432 "web/WebAssociatedURLLoaderOptions.h", | 433 "web/WebAssociatedURLLoaderOptions.h", |
| 433 "web/WebAutofillClient.h", | 434 "web/WebAutofillClient.h", |
| 434 "web/WebBlob.h", | 435 "web/WebBlob.h", |
| 435 "web/WebCSSParser.h", | 436 "web/WebCSSParser.h", |
| 436 "web/WebCache.h", | |
| 437 "web/WebColorChooser.h", | 437 "web/WebColorChooser.h", |
| 438 "web/WebColorChooserClient.h", | 438 "web/WebColorChooserClient.h", |
| 439 "web/WebColorSuggestion.h", | 439 "web/WebColorSuggestion.h", |
| 440 "web/WebCompositionUnderline.h", | 440 "web/WebCompositionUnderline.h", |
| 441 "web/WebConsoleMessage.h", | 441 "web/WebConsoleMessage.h", |
| 442 "web/WebContentSecurityPolicy.h", | 442 "web/WebContentSecurityPolicy.h", |
| 443 "web/WebContentSettingsClient.h", | 443 "web/WebContentSettingsClient.h", |
| 444 "web/WebContextMenuData.h", | 444 "web/WebContextMenuData.h", |
| 445 "web/WebCryptoNormalize.h", | 445 "web/WebCryptoNormalize.h", |
| 446 "web/WebCustomElement.h", | 446 "web/WebCustomElement.h", |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 source_set("shared_typemap_traits") { | 754 source_set("shared_typemap_traits") { |
| 755 visibility = [ ":*" ] | 755 visibility = [ ":*" ] |
| 756 sources = [ | 756 sources = [ |
| 757 "web/ConsoleMessageStructTraits.cpp", | 757 "web/ConsoleMessageStructTraits.cpp", |
| 758 "web/WindowFeaturesStructTraits.cpp", | 758 "web/WindowFeaturesStructTraits.cpp", |
| 759 ] | 759 ] |
| 760 deps = [ | 760 deps = [ |
| 761 ":mojo_bindings_shared__generator", | 761 ":mojo_bindings_shared__generator", |
| 762 ] | 762 ] |
| 763 } | 763 } |
| OLD | NEW |