| 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 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 } | 632 } |
| 633 | 633 |
| 634 public_configs = [ | 634 public_configs = [ |
| 635 ":blink_headers_config", | 635 ":blink_headers_config", |
| 636 | 636 |
| 637 # Blink exposes icu headers in the public API. | 637 # Blink exposes icu headers in the public API. |
| 638 "//third_party/icu:icu_config", | 638 "//third_party/icu:icu_config", |
| 639 ] | 639 ] |
| 640 | 640 |
| 641 public_deps = [ | 641 public_deps = [ |
| 642 "//net", |
| 642 "//skia", | 643 "//skia", |
| 643 "//url", | 644 "//url", |
| 644 ] | 645 ] |
| 645 | 646 |
| 646 deps = [ | 647 deps = [ |
| 647 ":generate_mojo_bindings", | 648 ":generate_mojo_bindings", |
| 648 "//base:base", | 649 "//base:base", |
| 649 "//cc:cc", | 650 "//cc:cc", |
| 650 "//cc/paint:paint", | 651 "//cc/paint:paint", |
| 651 "//cc/surfaces:surface_id", | 652 "//cc/surfaces:surface_id", |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 840 sources = [ | 841 sources = [ |
| 841 "web/ConsoleMessageStructTraits.cpp", | 842 "web/ConsoleMessageStructTraits.cpp", |
| 842 "web/ConsoleMessageStructTraits.h", | 843 "web/ConsoleMessageStructTraits.h", |
| 843 ] | 844 ] |
| 844 deps = [ | 845 deps = [ |
| 845 ":blink_headers", | 846 ":blink_headers", |
| 846 ":mojo_bindings_shared__generator", | 847 ":mojo_bindings_shared__generator", |
| 847 "//mojo/public/cpp/bindings:struct_traits", | 848 "//mojo/public/cpp/bindings:struct_traits", |
| 848 ] | 849 ] |
| 849 } | 850 } |
| OLD | NEW |