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

Side by Side Diff: third_party/WebKit/public/BUILD.gn

Issue 2393513004: Convert app banners to use Mojo. (Closed)
Patch Set: Add TODO Created 4 years, 1 month 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
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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//third_party/WebKit/Source/config.gni") 6 import("//third_party/WebKit/Source/config.gni")
7 import("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 "platform/WebURLLoaderClient.h", 313 "platform/WebURLLoaderClient.h",
314 "platform/WebURLLoaderMockFactory.h", 314 "platform/WebURLLoaderMockFactory.h",
315 "platform/WebURLRequest.h", 315 "platform/WebURLRequest.h",
316 "platform/WebURLResponse.h", 316 "platform/WebURLResponse.h",
317 "platform/WebVector.h", 317 "platform/WebVector.h",
318 "platform/callback/WebClosure.h", 318 "platform/callback/WebClosure.h",
319 "platform/linux/WebFallbackFont.h", 319 "platform/linux/WebFallbackFont.h",
320 "platform/linux/WebFontRenderStyle.h", 320 "platform/linux/WebFontRenderStyle.h",
321 "platform/linux/WebSandboxSupport.h", 321 "platform/linux/WebSandboxSupport.h",
322 "platform/mac/WebSandboxSupport.h", 322 "platform/mac/WebSandboxSupport.h",
323 "platform/modules/app_banner/WebAppBannerClient.h",
324 "platform/modules/app_banner/WebAppBannerPromptReply.h",
325 "platform/modules/app_banner/WebAppBannerPromptResult.h",
326 "platform/modules/background_sync/WebSyncClient.h", 323 "platform/modules/background_sync/WebSyncClient.h",
327 "platform/modules/background_sync/WebSyncError.h", 324 "platform/modules/background_sync/WebSyncError.h",
328 "platform/modules/background_sync/WebSyncProvider.h", 325 "platform/modules/background_sync/WebSyncProvider.h",
329 "platform/modules/background_sync/WebSyncRegistration.h", 326 "platform/modules/background_sync/WebSyncRegistration.h",
330 "platform/modules/bluetooth/WebBluetooth.h", 327 "platform/modules/bluetooth/WebBluetooth.h",
331 "platform/modules/bluetooth/WebBluetoothDevice.h", 328 "platform/modules/bluetooth/WebBluetoothDevice.h",
332 "platform/modules/bluetooth/WebBluetoothError.h", 329 "platform/modules/bluetooth/WebBluetoothError.h",
333 "platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristic.h", 330 "platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristic.h",
334 "platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristicInit.h", 331 "platform/modules/bluetooth/WebBluetoothRemoteGATTCharacteristicInit.h",
335 "platform/modules/bluetooth/WebBluetoothRemoteGATTService.h", 332 "platform/modules/bluetooth/WebBluetoothRemoteGATTService.h",
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 660
664 # Similarly, the blink variant must be linked with the platform component 661 # Similarly, the blink variant must be linked with the platform component
665 # since it uses types from it in its typemaps. 662 # since it uses types from it in its typemaps.
666 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT" 663 export_class_attribute_blink = "BLINK_PLATFORM_EXPORT"
667 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" 664 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1"
668 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" 665 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h"
669 } 666 }
670 667
671 mojom("new_wrapper_types_mojo_bindings") { 668 mojom("new_wrapper_types_mojo_bindings") {
672 sources = [ 669 sources = [
670 "platform/modules/app_banner/app_banner.mojom",
673 "platform/modules/mediasession/media_session.mojom", 671 "platform/modules/mediasession/media_session.mojom",
674 "platform/modules/permissions/permission.mojom", 672 "platform/modules/permissions/permission.mojom",
675 "platform/modules/permissions/permission_status.mojom", 673 "platform/modules/permissions/permission_status.mojom",
676 "platform/modules/presentation/presentation.mojom", 674 "platform/modules/presentation/presentation.mojom",
677 "platform/modules/shapedetection/shapedetection.mojom", 675 "platform/modules/shapedetection/shapedetection.mojom",
678 "platform/modules/websockets/websocket.mojom", 676 "platform/modules/websockets/websocket.mojom",
679 "platform/referrer.mojom", 677 "platform/referrer.mojom",
680 "web/window_features.mojom", 678 "web/window_features.mojom",
681 ] 679 ]
682 public_deps = [ 680 public_deps = [
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 # relegated to a separate target to avoid duplication between the variants. 746 # relegated to a separate target to avoid duplication between the variants.
749 source_set("shared_typemap_traits") { 747 source_set("shared_typemap_traits") {
750 visibility = [ ":*" ] 748 visibility = [ ":*" ]
751 sources = [ 749 sources = [
752 "web/WindowFeaturesStructTraits.cpp", 750 "web/WindowFeaturesStructTraits.cpp",
753 ] 751 ]
754 deps = [ 752 deps = [
755 ":new_wrapper_types_mojo_bindings_shared__generator", 753 ":new_wrapper_types_mojo_bindings_shared__generator",
756 ] 754 ]
757 } 755 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | third_party/WebKit/public/platform/modules/app_banner/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698