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

Side by Side Diff: public/BUILD.gn

Issue 1222673004: GN: Explicitly list out public headers in the blink_headers source_set (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix indentation Created 5 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 # Depend on this target to use public blink API headers for things like enums 98 # Depend on this target to use public blink API headers for things like enums
99 # and public structures without actually linking against any Blink libraries. 99 # and public structures without actually linking against any Blink libraries.
100 source_set("blink_headers") { 100 source_set("blink_headers") {
101 public_configs = [ 101 public_configs = [
102 ":blink_headers_config", 102 ":blink_headers_config",
103 # Blink exposes icu headers in the public API. 103 # Blink exposes icu headers in the public API.
104 "//third_party/icu:icu_config", 104 "//third_party/icu:icu_config",
105 # Blink exposes NPAPI headers in the public API. 105 # Blink exposes NPAPI headers in the public API.
106 "//third_party/npapi:npapi_config", 106 "//third_party/npapi:npapi_config",
107 ] 107 ]
108 sources = [
109 "platform/WebAudioSourceProviderClient.h",
110 "platform/WebServiceWorkerRequest.h",
111 "platform/WebTransformOperations.h",
112 "platform/WebURLResponse.h",
113 "platform/WebFileWriter.h",
114 "platform/WebServiceWorkerCacheStorage.h",
115 "platform/WebGamepadListener.h",
116 "platform/WebFileSystemType.h",
117 "platform/WebGeofencingError.h",
118 "platform/WebSourceBuffer.h",
119 "platform/WebContentDecryptionModuleAccess.h",
120 "platform/WebExternalTextureLayerClient.h",
121 "platform/WebThemeEngine.h",
122 "platform/WebServiceWorkerResponse.h",
123 "platform/WebDragData.h",
124 "platform/WebCString.h",
125 "platform/WebCompositorAnimationPlayer.h",
126 "platform/WebPrivateOwnPtr.h",
127 "platform/WebHTTPHeaderVisitor.h",
128 "platform/WebScrollbar.h",
129 "platform/WebMediaStream.h",
130 "platform/WebServiceWorkerRegistration.h",
131 "platform/WebRect.h",
132 "platform/WebThread.h",
133 "platform/WebSetSinkIdError.h",
134 "platform/WebCallbacks.h",
135 "platform/WebInbandTextTrack.h",
136 "platform/WebFloatPoint.h",
137 "platform/WebMediaStreamTrack.h",
138 "platform/WebBatteryStatusListener.h",
139 "platform/WebMediaSource.h",
140 "platform/WebPageVisibilityState.h",
141 "platform/WebCryptoKeyAlgorithm.h",
142 "platform/WebCredential.h",
143 "platform/WebGestureDevice.h",
144 "platform/WebFloatSize.h",
145 "platform/WebProcessMemoryDump.h",
146 "platform/WebCursorInfo.h",
147 "platform/WebLayer.h",
148 "platform/mac/WebSandboxSupport.h",
149 "platform/WebCompositeAndReadbackAsyncCallback.h",
150 "platform/WebServiceWorkerCache.h",
151 "platform/WebDisplayItemList.h",
152 "platform/WebFileSystem.h",
153 "platform/WebLayerClient.h",
154 "platform/WebRTCOfferOptions.h",
155 "platform/WebHTTPLoadInfo.h",
156 "platform/WebSpeechSynthesisVoice.h",
157 "platform/WebContentDecryptionModule.h",
158 "platform/WebTraceLocation.h",
159 "platform/WebContentLayer.h",
160 "platform/WebMemoryAllocatorDump.h",
161 "platform/WebRTCConfiguration.h",
162 "platform/WebStorageQuotaType.h",
163 "platform/WebPasswordCredential.h",
164 "platform/WebStorageQuotaCallbacks.h",
165 "platform/WebSourceBufferClient.h",
166 "platform/WebLayerScrollClient.h",
167 "platform/WebCrypto.h",
168 "platform/WebSocketHandleClient.h",
169 "platform/WebScrollBlocksOn.h",
170 "platform/WebCompositorSupport.h",
171 "platform/WebFederatedCredential.h",
172 "platform/WebBatteryStatus.h",
173 "platform/WebFlingAnimator.h",
174 "platform/WebRTCVoidRequest.h",
175 "platform/WebDiscardableMemory.h",
176 "platform/WebExternalBitmap.h",
177 "platform/WebMIDIAccessorClient.h",
178 "platform/WebCryptoKey.h",
179 "platform/WebURLLoaderClient.h",
180 "platform/WebScrollbarBehavior.h",
181 "platform/WebVector.h",
182 "platform/WebMediaStreamCenter.h",
183 "platform/WebContentSettingCallbacks.h",
184 "platform/WebHTTPBody.h",
185 "platform/WebFrameTimingEvent.h",
186 "platform/WebFloatRect.h",
187 "platform/WebCookieJar.h",
188 "platform/WebAudioBus.h",
189 "platform/WebScreenInfo.h",
190 "platform/WebColor.h",
191 "platform/WebMediaStreamSource.h",
192 "platform/WebSpeechSynthesizerClient.h",
193 "platform/WebPlatformEventType.h",
194 "platform/WebSpeechSynthesizer.h",
195 "platform/WebMediaKeySystemMediaCapability.h",
196 "platform/WebString.h",
197 "platform/WebStorageQuotaError.h",
198 "platform/WebCanvas.h",
199 "platform/WebApplicationCacheHostClient.h",
200 "platform/WebMIDIAccessor.h",
201 "platform/WebMediaStreamCenterClient.h",
202 "platform/WebFilterOperations.h",
203 "platform/WebHistoryScrollRestorationType.h",
204 "platform/WebServiceWorkerClientsClaimCallbacks.h",
205 "platform/WebFileWriterClient.h",
206 "platform/modules/bluetooth/WebBluetoothGATTService.h",
207 "platform/modules/bluetooth/WebBluetoothError.h",
208 "platform/modules/bluetooth/WebBluetoothDevice.h",
209 "platform/modules/bluetooth/WebBluetooth.h",
210 "platform/modules/bluetooth/WebRequestDeviceOptions.h",
211 "platform/modules/bluetooth/WebBluetoothGATTCharacteristic.h",
212 "platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h",
213 "platform/modules/navigator_services/WebServicePortProviderClient.h",
214 "platform/modules/navigator_services/WebServicePortProvider.h",
215 "platform/modules/navigator_services/WebServicePort.h",
216 "platform/modules/permissions/WebPermissionObserver.h",
217 "platform/modules/permissions/WebPermissionClient.h",
218 "platform/modules/permissions/WebPermissionStatus.h",
219 "platform/modules/permissions/WebPermissionType.h",
220 "platform/modules/presentation/WebPresentationSessionClient.h",
221 "platform/modules/presentation/WebPresentationClient.h",
222 "platform/modules/presentation/WebPresentationController.h",
223 "platform/modules/presentation/WebPresentationError.h",
224 "platform/modules/device_orientation/WebDeviceOrientationListener.h",
225 "platform/modules/device_orientation/WebDeviceMotionData.h",
226 "platform/modules/device_orientation/WebDeviceOrientationData.h",
227 "platform/modules/device_orientation/WebDeviceMotionListener.h",
228 "platform/modules/app_banner/WebAppBannerPromptReply.h",
229 "platform/modules/app_banner/WebAppBannerClient.h",
230 "platform/modules/app_banner/WebAppBannerPromptResult.h",
231 "platform/modules/background_sync/WebSyncError.h",
232 "platform/modules/background_sync/WebSyncClient.h",
233 "platform/modules/background_sync/WebSyncProvider.h",
234 "platform/modules/background_sync/WebSyncRegistration.h",
235 "platform/modules/background_sync/WebSyncPermissionStatus.h",
236 "platform/modules/indexeddb/WebIDBKey.h",
237 "platform/modules/indexeddb/WebIDBTypes.h",
238 "platform/modules/indexeddb/WebIDBDatabase.h",
239 "platform/modules/indexeddb/WebIDBKeyPath.h",
240 "platform/modules/indexeddb/WebIDBFactory.h",
241 "platform/modules/indexeddb/WebIDBCursor.h",
242 "platform/modules/indexeddb/WebIDBKeyRange.h",
243 "platform/modules/indexeddb/WebIDBMetadata.h",
244 "platform/modules/indexeddb/WebIDBValue.h",
245 "platform/modules/indexeddb/WebIDBDatabaseError.h",
246 "platform/modules/indexeddb/WebIDBDatabaseCallbacks.h",
247 "platform/modules/indexeddb/WebIDBDatabaseException.h",
248 "platform/modules/indexeddb/WebIDBCallbacks.h",
249 "platform/modules/screen_orientation/WebScreenOrientationClient.h",
250 "platform/modules/screen_orientation/WebScreenOrientationType.h",
251 "platform/modules/screen_orientation/WebLockOrientationCallback.h",
252 "platform/modules/screen_orientation/WebScreenOrientationLockType.h",
253 "platform/modules/screen_orientation/WebLockOrientationError.h",
254 "platform/modules/vr/WebVR.h",
255 "platform/modules/vr/WebVRClient.h",
256 "platform/modules/notifications/WebNotificationPermission.h",
257 "platform/modules/notifications/WebNotificationDelegate.h",
258 "platform/modules/notifications/WebNotificationManager.h",
259 "platform/modules/notifications/WebNotificationData.h",
260 "platform/modules/push_messaging/WebPushSubscription.h",
261 "platform/modules/push_messaging/WebPushPermissionStatus.h",
262 "platform/modules/push_messaging/WebPushClient.h",
263 "platform/modules/push_messaging/WebPushSubscriptionOptions.h",
264 "platform/modules/push_messaging/WebPushError.h",
265 "platform/modules/push_messaging/WebPushProvider.h",
266 "platform/linux/WebFontInfo.h",
267 "platform/linux/WebFallbackFont.h",
268 "platform/linux/WebSandboxSupport.h",
269 "platform/linux/WebFontRenderStyle.h",
270 "platform/WebServiceWorkerProviderClient.h",
271 "platform/WebAudioSourceProvider.h",
272 "platform/WebGamepad.h",
273 "platform/WebRTCDataChannelHandler.h",
274 "platform/WebGestureCurveTarget.h",
275 "platform/WebBlendMode.h",
276 "platform/WebDisplayItemTransformTree.h",
277 "platform/WebConvertableToTraceFormat.h",
278 "platform/WebCryptoAlgorithm.h",
279 "platform/WebScrollbarLayer.h",
280 "platform/WebCredentialManagerError.h",
281 "platform/WebRTCDataChannelInit.h",
282 "platform/WebPrerender.h",
283 "platform/WebContentLayerClient.h",
284 "platform/WebFilterAnimationCurve.h",
285 "platform/WebFileError.h",
286 "platform/WebRTCPeerConnectionHandlerClient.h",
287 "platform/WebRTCDTMFSenderHandler.h",
288 "platform/WebEncryptedMediaRequest.h",
289 "platform/WebEncryptedMediaClient.h",
290 "platform/WebCredentialManagerClient.h",
291 "platform/WebCompositorAnimationCurve.h",
292 "platform/WebSocketHandshakeResponseInfo.h",
293 "platform/WebDoublePoint.h",
294 "platform/WebRTCSessionDescriptionRequest.h",
295 "platform/WebStorageNamespace.h",
296 "platform/WebSelectionBound.h",
297 "platform/WebServiceWorkerClientQueryOptions.h",
298 "platform/WebAudioDestinationConsumer.h",
299 "platform/WebLayerTreeView.h",
300 "platform/WebImage.h",
301 "platform/WebRTCStatsResponse.h",
302 "platform/WebFileUtilities.h",
303 "platform/WebGeofencingProvider.h",
304 "platform/WebCommon.h",
305 "platform/WebServiceWorkerError.h",
306 "platform/WebNonCopyable.h",
307 "platform/WebScrollOffsetAnimationCurve.h",
308 "platform/WebExternalTextureMailbox.h",
309 "platform/WebCircularGeofencingRegion.h",
310 "platform/WebScheduler.h",
311 "platform/WebScrollbarThemePainter.h",
312 "platform/WebThreadSafeData.h",
313 "platform/WebServiceWorkerRegistrationProxy.h",
314 "platform/WebServiceWorkerSkipWaitingCallbacks.h",
315 "platform/WebRTCSessionDescription.h",
316 "platform/WebSecurityOrigin.h",
317 "platform/WebCrossOriginServiceWorkerClient.h",
318 "platform/WebAudioDevice.h",
319 "platform/WebMimeRegistry.h",
320 "platform/WebNavigatorConnectProvider.h",
321 "platform/WebURLRequest.h",
322 "platform/WebLocalizedString.h",
323 "platform/WebExternalTextureLayer.h",
324 "platform/WebCompositorAnimation.h",
325 "platform/WebDisplayMode.h",
326 "platform/Platform.h",
327 "platform/WebTopControlsState.h",
328 "platform/WebSocketHandle.h",
329 "platform/WebEncryptedMediaKeyInformation.h",
330 "platform/WebCompositorAnimationDelegate.h",
331 "platform/WebPrerenderingSupport.h",
332 "platform/WebLayerPositionConstraint.h",
333 "platform/WebThreadedDataReceiver.h",
334 "platform/WebCryptoKeyAlgorithmParams.h",
335 "platform/WebImageGenerator.h",
336 "platform/WebRTCDataChannelHandlerClient.h",
337 "platform/WebMediaStreamTrackSourcesRequest.h",
338 "platform/WebMessagePortChannelClient.h",
339 "platform/WebCompositorOutputSurface.h",
340 "platform/WebServiceWorkerProvider.h",
341 "platform/WebFileSystemEntry.h",
342 "platform/WebSocketHandshakeRequestInfo.h",
343 "platform/WebTransformAnimationCurve.h",
344 "platform/WebGamepads.h",
345 "platform/WebPoint.h",
346 "platform/WebSourceInfo.h",
347 "platform/WebFloatKeyframe.h",
348 "platform/WebClipboard.h",
349 "platform/WebURLError.h",
350 "platform/WebSize.h",
351 "platform/WebBlobInfo.h",
352 "platform/WebGraphicsLayerDebugInfo.h",
353 "platform/WebCompositorAnimationTimeline.h",
354 "platform/WebApplicationCacheHost.h",
355 "platform/WebServiceWorkerClientType.h",
356 "platform/WebInbandTextTrackClient.h",
357 "platform/WebPlatformEventListener.h",
358 "platform/WebGraphicsContext3D.h",
359 "platform/WebMessagePortChannel.h",
360 "platform/WebFileInfo.h",
361 "platform/WebMediaKeySystemConfiguration.h",
362 "platform/WebPublicSuffixList.h",
363 "platform/WebRTCPeerConnectionHandler.h",
364 "platform/WebCryptoAlgorithmParams.h",
365 "platform/WebSuspendableTask.h",
366 "platform/WebFloatAnimationCurve.h",
367 "platform/WebMemoryDumpProvider.h",
368 "platform/WebServiceWorkerCacheError.h",
369 "platform/WebLayoutAndPaintAsyncCallback.h",
370 "platform/WebData.h",
371 "platform/WebPluginListBuilder.h",
372 "platform/WebTransformKeyframe.h",
373 "platform/WebServiceWorkerClientsInfo.h",
374 "platform/WebDatabaseObserver.h",
375 "platform/WebGeofencingRegistration.h",
376 "platform/WebTimeRange.h",
377 "platform/WebImageLayer.h",
378 "platform/WebRenderingStats.h",
379 "platform/WebGeofencingEventType.h",
380 "platform/WebContentDecryptionModuleResult.h",
381 "platform/WebURL.h",
382 "platform/WebConnectionType.h",
383 "platform/WebPrescientNetworking.h",
384 "platform/WebBlobData.h",
385 "platform/WebWaitableEvent.h",
386 "platform/WebEncryptedMediaTypes.h",
387 "platform/WebFocusType.h",
388 "platform/WebContentDecryptionModuleException.h",
389 "platform/WebServiceWorkerEventResult.h",
390 "platform/WebStorageArea.h",
391 "platform/WebURLLoadTiming.h",
392 "platform/WebFloatPoint3D.h",
393 "platform/WebMediaConstraints.h",
394 "platform/WebContentDecryptionModuleSession.h",
395 "platform/WebDataConsumerHandle.h",
396 "platform/WebPrivatePtr.h",
397 "platform/WebServiceWorker.h",
398 "platform/WebRTCICECandidate.h",
399 "platform/WebServiceWorkerProxy.h",
400 "platform/WebFallbackThemeEngine.h",
401 "platform/WebGraphicsContext3DProvider.h",
402 "platform/WebServiceWorkerState.h",
403 "platform/WebMediaPlayer.h",
404 "platform/WebMediaPlayerClient.h",
405 "platform/WebScrollbarThemeGeometry.h",
406 "platform/WebUnitTestSupport.h",
407 "platform/WebFilterKeyframe.h",
408 "platform/WebBlobRegistry.h",
409 "platform/WebSpeechSynthesisUtterance.h",
410 "platform/WebURLLoader.h",
411 "platform/WebGestureCurve.h",
412 "platform/WebCompositorAnimationPlayerClient.h",
413 "platform/WebNinePatchLayer.h",
414 "platform/WebMediaDeviceInfo.h",
415 "platform/WebFileSystemCallbacks.h",
416 "platform/WebServiceWorkerResponseType.h",
417 "platform/WebDeviceLightListener.h",
418 "platform/WebRTCDTMFSenderHandlerClient.h",
419 "platform/WebRTCStatsRequest.h",
420 "platform/WebSerializedOrigin.h",
421 "platform/WebReferrerPolicy.h",
422 "web/WebDateTimeInputType.h",
423 "web/WebSpeechRecognitionParams.h",
424 "web/WebPrintPresetOptions.h",
425 "web/WebCryptoNormalize.h",
426 "web/WebPopupMenuInfo.h",
427 "web/WebHistoryItem.h",
428 "web/WebOptionElement.h",
429 "web/WebDateTimeChooserCompletion.h",
430 "web/WebDatabase.h",
431 "web/WebDevToolsAgent.h",
432 "web/WebNode.h",
433 "web/WebRuntimeFeatures.h",
434 "web/WebScopedUserGesture.h",
435 "web/WebFileChooserCompletion.h",
436 "web/WebPrintScalingOption.h",
437 "web/WebFontDescription.h",
438 "web/WebDraggableRegion.h",
439 "web/WebAutofillClient.h",
440 "web/WebLocalFrame.h",
441 "web/WebDragOperation.h",
442 "web/WebFindOptions.h",
443 "web/WebElement.h",
444 "web/WebGeolocationError.h",
445 "web/WebFrameLoadType.h",
446 "web/WebArrayBufferConverter.h",
447 "web/WebMediaPlayerAction.h",
448 "web/WebEmbeddedWorkerStartData.h",
449 "web/WebConsoleMessage.h",
450 "web/WebSpeechRecognitionHandle.h",
451 "web/WebSpellCheckClient.h",
452 "web/WebTextAreaElement.h",
453 "web/WebDOMMouseEvent.h",
454 "web/WebFrame.h",
455 "web/WebViewClient.h",
456 "web/WebPageOverlay.h",
457 "web/WebHistoryCommitType.h",
458 "web/WebSecurityPolicy.h",
459 "web/mac/WebInputEventFactory.h",
460 "web/mac/WebSubstringUtil.h",
461 "web/mac/WebScrollbarTheme.h",
462 "web/WebDOMResourceProgressEvent.h",
463 "web/WebSharedWorkerRepositoryClient.h",
464 "web/WebMIDIPermissionRequest.h",
465 "web/WebDOMActivityLogger.h",
466 "web/WebSelection.h",
467 "web/WebFileChooserParams.h",
468 "web/WebInputEvent.h",
469 "web/WebImageCache.h",
470 "web/WebTextCheckingType.h",
471 "web/WebSandboxFlags.h",
472 "web/WebUserGestureToken.h",
473 "web/WebContentDetectionResult.h",
474 "web/WebPrintParams.h",
475 "web/WebDOMCustomEvent.h",
476 "web/WebTextDecorationType.h",
477 "web/WebIconURL.h",
478 "web/WebSharedWorkerClient.h",
479 "web/WebHelperPlugin.h",
480 "web/WebDateTimeChooserParams.h",
481 "web/WebScopedWindowFocusAllowedIndicator.h",
482 "web/WebUserGestureIndicator.h",
483 "web/WebFrameClient.h",
484 "web/WebBlob.h",
485 "web/WebWidget.h",
486 "web/WebImageDecoder.h",
487 "web/WebCustomElement.h",
488 "web/WebBeginFrameArgs.h",
489 "web/WebInputElement.h",
490 "web/WebArrayBuffer.h",
491 "web/WebScopedMicrotaskSuppression.h",
492 "web/WebRemoteFrameClient.h",
493 "web/WebServiceWorkerNetworkProvider.h",
494 "web/WebDragStatus.h",
495 "web/WebWindowFeatures.h",
496 "web/WebColorSuggestion.h",
497 "web/modules/notifications/WebNotificationPermissionCallback.h",
498 "web/linux/WebFontRendering.h",
499 "web/WebGeolocationClient.h",
500 "web/WebTouchAction.h",
501 "web/WebAXEnums.h",
502 "web/WebTextCheckingResult.h",
503 "web/WebTextRun.h",
504 "web/WebFormElement.h",
505 "web/WebScriptExecutionCallback.h",
506 "web/WebMediaDevicesRequest.h",
507 "web/WebScriptBindings.h",
508 "web/WebExceptionCode.h",
509 "web/WebDevToolsFrontend.h",
510 "web/WebContentSecurityPolicy.h",
511 "web/WebDOMMessageEvent.h",
512 "web/WebPageSerializerClient.h",
513 "web/WebDOMProgressEvent.h",
514 "web/WebPerformance.h",
515 "web/WebDateTimeSuggestion.h",
516 "web/WebActiveWheelFlingParameters.h",
517 "web/WebGeolocationController.h",
518 "web/WebHeap.h",
519 "web/WebServiceWorkerContextProxy.h",
520 "web/WebTextInputType.h",
521 "web/WebSurroundingText.h",
522 "web/WebLeakDetector.h",
523 "web/WebFormControlElement.h",
524 "web/win/WebFontRendering.h",
525 "web/WebSpeechRecognizerClient.h",
526 "web/WebDOMFileSystem.h",
527 "web/WebPopupType.h",
528 "web/WebNodeList.h",
529 "web/WebPluginContainer.h",
530 "web/WebGeolocationPermissionRequestManager.h",
531 "web/WebRemoteFrame.h",
532 "web/WebPlugin.h",
533 "web/WebKit.h",
534 "web/WebPageSerializer.h",
535 "web/WebPluginAction.h",
536 "web/WebCachedURLRequest.h",
537 "web/WebSecurityOrigin.h",
538 "web/WebFrameWidget.h",
539 "web/WebColorChooser.h",
540 "web/WebContextMenuData.h",
541 "web/WebURLLoaderOptions.h",
542 "web/WebNetworkStateNotifier.h",
543 "web/WebScriptSource.h",
544 "web/WebBindings.h",
545 "web/WebSerializedScriptValueVersion.h",
546 "web/WebGlyphCache.h",
547 "web/WebDOMMediaStreamTrack.h",
548 "web/WebLabelElement.h",
549 "web/WebTextDirection.h",
550 "web/WebPluginScriptForbiddenScope.h",
551 "web/WebDataSource.h",
552 "web/WebDevToolsFrontendClient.h",
553 "web/WebNavigatorContentUtilsClient.h",
554 "web/WebSelectElement.h",
555 "web/WebGeolocationPosition.h",
556 "web/WebExternalPopupMenu.h",
557 "web/WebDeviceEmulationParams.h",
558 "web/WebTestInterfaceFactory.h",
559 "web/WebScriptController.h",
560 "web/WebPluginPlaceholder.h",
561 "web/WebSpeechRecognitionResult.h",
562 "web/WebCache.h",
563 "web/WebSharedWorkerConnector.h",
564 "web/WebContentSettingsClient.h",
565 "web/WebDocumentType.h",
566 "web/WebCompositionUnderline.h",
567 "web/WebSpeechGrammar.h",
568 "web/WebSocketClient.h",
569 "web/WebDevToolsAgentClient.h",
570 "web/WebSerializedScriptValue.h",
571 "web/WebWidgetClient.h",
572 "web/WebUserMediaRequest.h",
573 "web/WebPluginDocument.h",
574 "web/WebMenuItemInfo.h",
575 "web/WebAXObject.h",
576 "web/WebMIDIClient.h",
577 "web/WebSelector.h",
578 "web/WebTextAffinity.h",
579 "web/WebSearchableFormData.h",
580 "web/WebSpeechRecognizer.h",
581 "web/WebRange.h",
582 "web/WebTestingSupport.h",
583 "web/WebColorChooserClient.h",
584 "web/WebTextCheckingCompletion.h",
585 "web/WebPrerendererClient.h",
586 "web/WebPagePopup.h",
587 "web/WebExternalPopupMenuClient.h",
588 "web/WebHitTestResult.h",
589 "web/WebColorName.h",
590 "web/WebNavigationPolicy.h",
591 "web/WebView.h",
592 "web/WebTouchPoint.h",
593 "web/WebPluginParams.h",
594 "web/WebDOMEvent.h",
595 "web/WebSharedWorker.h",
596 "web/WebDocument.h",
597 "web/WebStorageEventDispatcher.h",
598 "web/WebServiceWorkerContextClient.h",
599 "web/WebElementCollection.h",
600 "web/WebTextInputInfo.h",
601 "web/WebUserMediaClient.h",
602 "web/default/WebRenderTheme.h",
603 "web/WebGraphicsContext.h",
604 "web/WebSettings.h",
605 "web/WebTreeScopeType.h",
606 "web/WebFont.h",
607 "web/WebDOMError.h",
608 "web/WebNavigationType.h",
609 "web/WebWorkerContentSettingsClientProxy.h",
610 "web/WebMemoryUsageInfo.h",
611 "web/WebMediaStreamRegistry.h",
612 "web/WebGeolocationPermissionRequest.h",
613 "web/WebEmbeddedWorker.h",
614 "web/WebSocket.h",
615 "web/WebArrayBufferView.h",
616 ]
108 } 617 }
109 618
110 # GYP version: WebKit/public/blink_devtools.gyp:blink_devtools_frontend_resource s 619 # GYP version: WebKit/public/blink_devtools.gyp:blink_devtools_frontend_resource s
111 group("blink_devtools_frontend_resources") { 620 group("blink_devtools_frontend_resources") {
112 deps = [ 621 deps = [
113 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", 622 "//third_party/WebKit/Source/devtools:devtools_frontend_resources",
114 ] 623 ]
115 } 624 }
116 625
117 # GYP version: WebKit/public/blink_devtools.gyp:blink_generate_devtools_grd 626 # GYP version: WebKit/public/blink_devtools.gyp:blink_generate_devtools_grd
(...skipping 19 matching lines...) Expand all
137 grit("image_resources") { 646 grit("image_resources") {
138 output_dir = "$root_gen_dir/blink/public/resources" 647 output_dir = "$root_gen_dir/blink/public/resources"
139 use_qualified_include = true 648 use_qualified_include = true
140 source = "blink_image_resources.grd" 649 source = "blink_image_resources.grd"
141 outputs = [ 650 outputs = [
142 "grit/blink_image_resources.h", 651 "grit/blink_image_resources.h",
143 "blink_image_resources_100_percent.pak", 652 "blink_image_resources_100_percent.pak",
144 "blink_image_resources_200_percent.pak", 653 "blink_image_resources_200_percent.pak",
145 ] 654 ]
146 } 655 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698