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

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

Issue 2574593003: Fix Windows build warning LNK4217 for blink_platform.dll. (Closed)
Patch Set: Rebase Created 3 years, 11 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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 "platform/modules/websockets/websocket.mojom", 669 "platform/modules/websockets/websocket.mojom",
670 "platform/referrer.mojom", 670 "platform/referrer.mojom",
671 "platform/site_engagement.mojom", 671 "platform/site_engagement.mojom",
672 "web/window_features.mojom", 672 "web/window_features.mojom",
673 ] 673 ]
674 public_deps = [ 674 public_deps = [
675 ":android_mojo_bindings", 675 ":android_mojo_bindings",
676 "//device/bluetooth/public/interfaces", 676 "//device/bluetooth/public/interfaces",
677 "//mojo/common:common_custom_types", 677 "//mojo/common:common_custom_types",
678 "//ui/gfx/geometry/mojo", 678 "//ui/gfx/geometry/mojo",
679 "//ui/gfx/geometry/mojo:mojo",
680 "//url/mojo:url_mojom_gurl", 679 "//url/mojo:url_mojom_gurl",
681 "//url/mojo:url_mojom_origin", 680 "//url/mojo:url_mojom_origin",
682 ] 681 ]
683 682
684 # The chromium variant must be linked with content and use the same export 683 # The chromium variant must be linked with content and use the same export
685 # settings in component build because of the WebBluetoothDeviceId typemap 684 # settings in component build because of the WebBluetoothDeviceId typemap
686 # inside content. 685 # inside content.
687 export_class_attribute = "CONTENT_EXPORT" 686 export_class_attribute = "CONTENT_EXPORT"
688 export_define = "CONTENT_IMPLEMENTATION=1" 687 export_define = "CONTENT_IMPLEMENTATION=1"
689 export_header = "content/common/content_export.h" 688 export_header = "content/common/content_export.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 # relegated to a separate target to avoid duplication between the variants. 746 # relegated to a separate target to avoid duplication between the variants.
748 source_set("shared_typemap_traits") { 747 source_set("shared_typemap_traits") {
749 visibility = [ ":*" ] 748 visibility = [ ":*" ]
750 sources = [ 749 sources = [
751 "web/WindowFeaturesStructTraits.cpp", 750 "web/WindowFeaturesStructTraits.cpp",
752 ] 751 ]
753 deps = [ 752 deps = [
754 ":mojo_bindings_shared__generator", 753 ":mojo_bindings_shared__generator",
755 ] 754 ]
756 } 755 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698