| 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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 ":generate_mojo_bindings", | 592 ":generate_mojo_bindings", |
| 593 ] | 593 ] |
| 594 } | 594 } |
| 595 | 595 |
| 596 group("blink_devtools_frontend_resources") { | 596 group("blink_devtools_frontend_resources") { |
| 597 public_deps = [ | 597 public_deps = [ |
| 598 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", | 598 "//third_party/WebKit/Source/devtools:devtools_frontend_resources", |
| 599 ] | 599 ] |
| 600 } | 600 } |
| 601 | 601 |
| 602 group("blink_devtools_frontend_resources_files") { |
| 603 data_deps = [ |
| 604 "//third_party/WebKit/Source/devtools:devtools_all_files", |
| 605 ] |
| 606 } |
| 607 |
| 602 group("blink_generate_devtools_grd") { | 608 group("blink_generate_devtools_grd") { |
| 603 public_deps = [ | 609 public_deps = [ |
| 604 "//third_party/WebKit/Source/devtools:generate_devtools_grd", | 610 "//third_party/WebKit/Source/devtools:generate_devtools_grd", |
| 605 ] | 611 ] |
| 606 } | 612 } |
| 607 | 613 |
| 608 grit("resources") { | 614 grit("resources") { |
| 609 output_dir = "$root_gen_dir/blink/public/resources" | 615 output_dir = "$root_gen_dir/blink/public/resources" |
| 610 use_qualified_include = true | 616 use_qualified_include = true |
| 611 source = "blink_resources.grd" | 617 source = "blink_resources.grd" |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 # relegated to a separate target to avoid duplication between the variants. | 753 # relegated to a separate target to avoid duplication between the variants. |
| 748 source_set("shared_typemap_traits") { | 754 source_set("shared_typemap_traits") { |
| 749 visibility = [ ":*" ] | 755 visibility = [ ":*" ] |
| 750 sources = [ | 756 sources = [ |
| 751 "web/ConsoleMessageStructTraits.cpp", | 757 "web/ConsoleMessageStructTraits.cpp", |
| 752 ] | 758 ] |
| 753 deps = [ | 759 deps = [ |
| 754 ":mojo_bindings_shared__generator", | 760 ":mojo_bindings_shared__generator", |
| 755 ] | 761 ] |
| 756 } | 762 } |
| OLD | NEW |