| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 # relegated to a separate target to avoid duplication between the variants. | 746 # relegated to a separate target to avoid duplication between the variants. |
| 743 source_set("shared_typemap_traits") { | 747 source_set("shared_typemap_traits") { |
| 744 visibility = [ ":*" ] | 748 visibility = [ ":*" ] |
| 745 sources = [ | 749 sources = [ |
| 746 "web/WindowFeaturesStructTraits.cpp", | 750 "web/WindowFeaturesStructTraits.cpp", |
| 747 ] | 751 ] |
| 748 deps = [ | 752 deps = [ |
| 749 ":mojo_bindings_shared__generator", | 753 ":mojo_bindings_shared__generator", |
| 750 ] | 754 ] |
| 751 } | 755 } |
| OLD | NEW |