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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 "web/win/WebFontRendering.h", | 584 "web/win/WebFontRendering.h", |
585 ] | 585 ] |
586 | 586 |
587 public_configs = [ | 587 public_configs = [ |
588 ":blink_headers_config", | 588 ":blink_headers_config", |
589 | 589 |
590 # Blink exposes icu headers in the public API. | 590 # Blink exposes icu headers in the public API. |
591 "//third_party/icu:icu_config", | 591 "//third_party/icu:icu_config", |
592 ] | 592 ] |
593 | 593 |
| 594 public_deps = [ |
| 595 "//services/service_manager/public/interfaces:interfaces_blink", |
| 596 ] |
| 597 |
594 deps = [ | 598 deps = [ |
595 ":generate_mojo_bindings", | 599 ":generate_mojo_bindings", |
596 ] | 600 ] |
597 } | 601 } |
598 | 602 |
599 group("blink_devtools_frontend_resources") { | 603 group("blink_devtools_frontend_resources") { |
600 public_deps = [ | 604 public_deps = [ |
601 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", | 605 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", |
602 ] | 606 ] |
603 } | 607 } |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
743 # relegated to a separate target to avoid duplication between the variants. | 747 # relegated to a separate target to avoid duplication between the variants. |
744 source_set("shared_typemap_traits") { | 748 source_set("shared_typemap_traits") { |
745 visibility = [ ":*" ] | 749 visibility = [ ":*" ] |
746 sources = [ | 750 sources = [ |
747 "web/WindowFeaturesStructTraits.cpp", | 751 "web/WindowFeaturesStructTraits.cpp", |
748 ] | 752 ] |
749 deps = [ | 753 deps = [ |
750 ":mojo_bindings_shared__generator", | 754 ":mojo_bindings_shared__generator", |
751 ] | 755 ] |
752 } | 756 } |
OLD | NEW |