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