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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 "web/win/WebFontRendering.h", | 580 "web/win/WebFontRendering.h", |
581 ] | 581 ] |
582 | 582 |
583 public_configs = [ | 583 public_configs = [ |
584 ":blink_headers_config", | 584 ":blink_headers_config", |
585 | 585 |
586 # Blink exposes icu headers in the public API. | 586 # Blink exposes icu headers in the public API. |
587 "//third_party/icu:icu_config", | 587 "//third_party/icu:icu_config", |
588 ] | 588 ] |
589 | 589 |
| 590 public_deps = [ |
| 591 "//services/service_manager/public/interfaces:interfaces_blink", |
| 592 ] |
| 593 |
590 deps = [ | 594 deps = [ |
591 ":generate_mojo_bindings", | 595 ":generate_mojo_bindings", |
592 ] | 596 ] |
593 } | 597 } |
594 | 598 |
595 group("blink_devtools_frontend_resources") { | 599 group("blink_devtools_frontend_resources") { |
596 public_deps = [ | 600 public_deps = [ |
597 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", | 601 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", |
598 ] | 602 ] |
599 } | 603 } |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 # relegated to a separate target to avoid duplication between the variants. | 762 # relegated to a separate target to avoid duplication between the variants. |
759 source_set("shared_typemap_traits") { | 763 source_set("shared_typemap_traits") { |
760 visibility = [ ":*" ] | 764 visibility = [ ":*" ] |
761 sources = [ | 765 sources = [ |
762 "web/WindowFeaturesStructTraits.cpp", | 766 "web/WindowFeaturesStructTraits.cpp", |
763 ] | 767 ] |
764 deps = [ | 768 deps = [ |
765 ":new_wrapper_types_mojo_bindings_shared__generator", | 769 ":new_wrapper_types_mojo_bindings_shared__generator", |
766 ] | 770 ] |
767 } | 771 } |
OLD | NEW |