| 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 | |
| 598 deps = [ | 594 deps = [ |
| 599 ":generate_mojo_bindings", | 595 ":generate_mojo_bindings", |
| 600 ] | 596 ] |
| 601 } | 597 } |
| 602 | 598 |
| 603 group("blink_devtools_frontend_resources") { | 599 group("blink_devtools_frontend_resources") { |
| 604 public_deps = [ | 600 public_deps = [ |
| 605 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", | 601 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", |
| 606 ] | 602 ] |
| 607 } | 603 } |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 # relegated to a separate target to avoid duplication between the variants. | 743 # relegated to a separate target to avoid duplication between the variants. |
| 748 source_set("shared_typemap_traits") { | 744 source_set("shared_typemap_traits") { |
| 749 visibility = [ ":*" ] | 745 visibility = [ ":*" ] |
| 750 sources = [ | 746 sources = [ |
| 751 "web/WindowFeaturesStructTraits.cpp", | 747 "web/WindowFeaturesStructTraits.cpp", |
| 752 ] | 748 ] |
| 753 deps = [ | 749 deps = [ |
| 754 ":mojo_bindings_shared__generator", | 750 ":mojo_bindings_shared__generator", |
| 755 ] | 751 ] |
| 756 } | 752 } |
| OLD | NEW |