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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 config("blink_headers_config") { | 61 config("blink_headers_config") { |
62 include_dirs = [ | 62 include_dirs = [ |
63 "..", | 63 "..", |
64 "$root_gen_dir/third_party/WebKit", | 64 "$root_gen_dir/third_party/WebKit", |
65 ] | 65 ] |
66 | 66 |
67 # Allow :blink_headers to include v8.h without linking to it. | 67 # Allow :blink_headers to include v8.h without linking to it. |
68 configs = [ "//v8:external_config" ] | 68 configs = [ "//v8:external_config" ] |
69 } | 69 } |
70 | 70 |
71 # Public feature flags usabout outside of Blink. | 71 # Public feature flags used outside of Blink. |
72 buildflag_header("features") { | 72 buildflag_header("features") { |
73 header = "public_features.h" | 73 header = "public_features.h" |
74 flags = [ "DEBUG_DEVTOOLS=$debug_devtools" ] | 74 flags = [ |
| 75 "DEBUG_DEVTOOLS=$debug_devtools", |
| 76 "USE_MINIKIN_HYPHENATION=$use_minikin_hyphenation", |
| 77 ] |
75 } | 78 } |
76 | 79 |
77 if (is_android) { | 80 if (is_android) { |
78 java_cpp_enum("blink_headers_java_enums_srcjar") { | 81 java_cpp_enum("blink_headers_java_enums_srcjar") { |
79 sources = [ | 82 sources = [ |
80 "./platform/WebDisplayMode.h", | 83 "./platform/WebDisplayMode.h", |
81 "./platform/WebInputEvent.h", | 84 "./platform/WebInputEvent.h", |
82 "./platform/WebTextInputType.h", | 85 "./platform/WebTextInputType.h", |
83 "./platform/modules/remoteplayback/WebRemotePlaybackAvailability.h", | 86 "./platform/modules/remoteplayback/WebRemotePlaybackAvailability.h", |
84 ] | 87 ] |
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 # relegated to a separate target to avoid duplication between the variants. | 761 # relegated to a separate target to avoid duplication between the variants. |
759 source_set("shared_typemap_traits") { | 762 source_set("shared_typemap_traits") { |
760 visibility = [ ":*" ] | 763 visibility = [ ":*" ] |
761 sources = [ | 764 sources = [ |
762 "web/WindowFeaturesStructTraits.cpp", | 765 "web/WindowFeaturesStructTraits.cpp", |
763 ] | 766 ] |
764 deps = [ | 767 deps = [ |
765 ":new_wrapper_types_mojo_bindings_shared__generator", | 768 ":new_wrapper_types_mojo_bindings_shared__generator", |
766 ] | 769 ] |
767 } | 770 } |
OLD | NEW |