Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Side by Side Diff: third_party/WebKit/public/BUILD.gn

Issue 2734973002: Stop setting use_qualified_include to true now that that is the default. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/BUILD.gn ('k') | ui/resources/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 } 606 }
607 607
608 group("blink_generate_devtools_grd") { 608 group("blink_generate_devtools_grd") {
609 public_deps = [ 609 public_deps = [
610 "//third_party/WebKit/Source/devtools:generate_devtools_grd", 610 "//third_party/WebKit/Source/devtools:generate_devtools_grd",
611 ] 611 ]
612 } 612 }
613 613
614 grit("resources") { 614 grit("resources") {
615 output_dir = "$root_gen_dir/blink/public/resources" 615 output_dir = "$root_gen_dir/blink/public/resources"
616 use_qualified_include = true
617 source = "blink_resources.grd" 616 source = "blink_resources.grd"
618 outputs = [ 617 outputs = [
619 "grit/blink_resources.h", 618 "grit/blink_resources.h",
620 "blink_resources.pak", 619 "blink_resources.pak",
621 ] 620 ]
622 if (use_concatenated_impulse_responses) { 621 if (use_concatenated_impulse_responses) {
623 grit_flags = [ 622 grit_flags = [
624 "-D", 623 "-D",
625 "use_concatenated_impulse_responses", 624 "use_concatenated_impulse_responses",
626 ] 625 ]
627 } 626 }
628 html_min_css = "$blink_core_output_dir/html.css" 627 html_min_css = "$blink_core_output_dir/html.css"
629 grit_flags += [ 628 grit_flags += [
630 "-E", 629 "-E",
631 "html_min_css=" + rebase_path(html_min_css), 630 "html_min_css=" + rebase_path(html_min_css),
632 ] 631 ]
633 deps = [ 632 deps = [
634 "//third_party/WebKit/Source/core:make_minimized_css", 633 "//third_party/WebKit/Source/core:make_minimized_css",
635 ] 634 ]
636 } 635 }
637 636
638 grit("image_resources") { 637 grit("image_resources") {
639 output_dir = "$root_gen_dir/blink/public/resources" 638 output_dir = "$root_gen_dir/blink/public/resources"
640 use_qualified_include = true
641 source = "blink_image_resources.grd" 639 source = "blink_image_resources.grd"
642 outputs = [ 640 outputs = [
643 "grit/blink_image_resources.h", 641 "grit/blink_image_resources.h",
644 "blink_image_resources_100_percent.pak", 642 "blink_image_resources_100_percent.pak",
645 "blink_image_resources_200_percent.pak", 643 "blink_image_resources_200_percent.pak",
646 ] 644 ]
647 } 645 }
648 646
649 mojom("mojo_bindings") { 647 mojom("mojo_bindings") {
650 visibility = [ "//content/*" ] 648 visibility = [ "//content/*" ]
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 # relegated to a separate target to avoid duplication between the variants. 751 # relegated to a separate target to avoid duplication between the variants.
754 source_set("shared_typemap_traits") { 752 source_set("shared_typemap_traits") {
755 visibility = [ ":*" ] 753 visibility = [ ":*" ]
756 sources = [ 754 sources = [
757 "web/ConsoleMessageStructTraits.cpp", 755 "web/ConsoleMessageStructTraits.cpp",
758 ] 756 ]
759 deps = [ 757 deps = [
760 ":mojo_bindings_shared__generator", 758 ":mojo_bindings_shared__generator",
761 ] 759 ]
762 } 760 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | ui/resources/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698