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

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

Issue 2650113004: [WIP] Add support for Android SuggestionSpans when editing text (Closed)
Patch Set: Uploading the latest version from my repo so I can reference it Created 3 years, 7 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
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("//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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 "platform/WebStorageArea.h", 314 "platform/WebStorageArea.h",
315 "platform/WebStorageNamespace.h", 315 "platform/WebStorageNamespace.h",
316 "platform/WebStorageQuotaCallbacks.h", 316 "platform/WebStorageQuotaCallbacks.h",
317 "platform/WebStorageQuotaError.h", 317 "platform/WebStorageQuotaError.h",
318 "platform/WebStorageQuotaType.h", 318 "platform/WebStorageQuotaType.h",
319 "platform/WebString.h", 319 "platform/WebString.h",
320 "platform/WebTextInputInfo.h", 320 "platform/WebTextInputInfo.h",
321 "platform/WebTextInputMode.h", 321 "platform/WebTextInputMode.h",
322 "platform/WebTextInputType.h", 322 "platform/WebTextInputType.h",
323 "platform/WebTextRun.h", 323 "platform/WebTextRun.h",
324 "platform/WebTextSuggestionInfo.h",
324 "platform/WebThemeEngine.h", 325 "platform/WebThemeEngine.h",
325 "platform/WebThread.h", 326 "platform/WebThread.h",
326 "platform/WebThreadSafeData.h", 327 "platform/WebThreadSafeData.h",
327 "platform/WebTimeRange.h", 328 "platform/WebTimeRange.h",
328 "platform/WebTopControlsState.h", 329 "platform/WebTopControlsState.h",
329 "platform/WebTouchEvent.h", 330 "platform/WebTouchEvent.h",
330 "platform/WebTouchPoint.h", 331 "platform/WebTouchPoint.h",
331 "platform/WebTraceLocation.h", 332 "platform/WebTraceLocation.h",
332 "platform/WebTrialTokenValidator.h", 333 "platform/WebTrialTokenValidator.h",
333 "platform/WebURL.h", 334 "platform/WebURL.h",
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 "web/WebSpellCheckClient.h", 594 "web/WebSpellCheckClient.h",
594 "web/WebStorageEventDispatcher.h", 595 "web/WebStorageEventDispatcher.h",
595 "web/WebSurroundingText.h", 596 "web/WebSurroundingText.h",
596 "web/WebTestingSupport.h", 597 "web/WebTestingSupport.h",
597 "web/WebTextCheckClient.h", 598 "web/WebTextCheckClient.h",
598 "web/WebTextCheckingCompletion.h", 599 "web/WebTextCheckingCompletion.h",
599 "web/WebTextCheckingResult.h", 600 "web/WebTextCheckingResult.h",
600 "web/WebTextDecorationType.h", 601 "web/WebTextDecorationType.h",
601 "web/WebTextDirection.h", 602 "web/WebTextDirection.h",
602 "web/WebTextInputType.h", 603 "web/WebTextInputType.h",
604 "web/WebTextSuggestionController.h",
603 "web/WebTouchAction.h", 605 "web/WebTouchAction.h",
604 "web/WebTreeScopeType.h", 606 "web/WebTreeScopeType.h",
605 "web/WebUserGestureIndicator.h", 607 "web/WebUserGestureIndicator.h",
606 "web/WebUserGestureToken.h", 608 "web/WebUserGestureToken.h",
607 "web/WebUserMediaClient.h", 609 "web/WebUserMediaClient.h",
608 "web/WebUserMediaRequest.h", 610 "web/WebUserMediaRequest.h",
609 "web/WebView.h", 611 "web/WebView.h",
610 "web/WebViewClient.h", 612 "web/WebViewClient.h",
611 "web/WebWidget.h", 613 "web/WebWidget.h",
612 "web/WebWidgetClient.h", 614 "web/WebWidgetClient.h",
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 ] 691 ]
690 } 692 }
691 693
692 mojom("mojo_bindings") { 694 mojom("mojo_bindings") {
693 visibility = [ "//content/*" ] 695 visibility = [ "//content/*" ]
694 visibility_blink = [ 696 visibility_blink = [
695 "//content/common:mojo_bindings_blink", 697 "//content/common:mojo_bindings_blink",
696 "//third_party/WebKit/Source/platform", 698 "//third_party/WebKit/Source/platform",
697 ] 699 ]
698 sources = [ 700 sources = [
701 "platform/input_host.mojom",
702 "platform/input_messages.mojom",
699 "platform/mime_registry.mojom", 703 "platform/mime_registry.mojom",
700 "platform/modules/app_banner/app_banner.mojom", 704 "platform/modules/app_banner/app_banner.mojom",
701 "platform/modules/background_fetch/background_fetch.mojom", 705 "platform/modules/background_fetch/background_fetch.mojom",
702 "platform/modules/background_sync/background_sync.mojom", 706 "platform/modules/background_sync/background_sync.mojom",
703 "platform/modules/bluetooth/web_bluetooth.mojom", 707 "platform/modules/bluetooth/web_bluetooth.mojom",
704 "platform/modules/broadcastchannel/broadcast_channel.mojom", 708 "platform/modules/broadcastchannel/broadcast_channel.mojom",
705 "platform/modules/budget_service/budget_service.mojom", 709 "platform/modules/budget_service/budget_service.mojom",
706 "platform/modules/fetch/fetch_api_request.mojom", 710 "platform/modules/fetch/fetch_api_request.mojom",
707 "platform/modules/hyphenation/hyphenation.mojom", 711 "platform/modules/hyphenation/hyphenation.mojom",
708 "platform/modules/mediasession/media_session.mojom", 712 "platform/modules/mediasession/media_session.mojom",
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 source_set("shared_typemap_traits") { 806 source_set("shared_typemap_traits") {
803 visibility = [ ":*" ] 807 visibility = [ ":*" ]
804 sources = [ 808 sources = [
805 "web/ConsoleMessageStructTraits.cpp", 809 "web/ConsoleMessageStructTraits.cpp",
806 "web/ConsoleMessageStructTraits.h", 810 "web/ConsoleMessageStructTraits.h",
807 ] 811 ]
808 deps = [ 812 deps = [
809 ":mojo_bindings_shared__generator", 813 ":mojo_bindings_shared__generator",
810 ] 814 ]
811 } 815 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebInputMethodControllerImpl.cpp ('k') | third_party/WebKit/public/platform/input_host.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698