| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//third_party/WebKit/Source/config.gni") | 6 import("//third_party/WebKit/Source/config.gni") |
| 7 import("//third_party/WebKit/Source/core/core.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 8 | 9 |
| 9 if (is_android) { | 10 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 11 import("//build/config/android/rules.gni") |
| 11 } | 12 } |
| 12 | 13 |
| 13 group("blink") { | 14 group("blink") { |
| 14 public_deps = [ | 15 public_deps = [ |
| 15 ":blink_headers", | 16 ":blink_headers", |
| 16 ":blink_minimal", | 17 ":blink_minimal", |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 outputs = [ | 610 outputs = [ |
| 610 "grit/blink_resources.h", | 611 "grit/blink_resources.h", |
| 611 "blink_resources.pak", | 612 "blink_resources.pak", |
| 612 ] | 613 ] |
| 613 if (use_concatenated_impulse_responses) { | 614 if (use_concatenated_impulse_responses) { |
| 614 grit_flags = [ | 615 grit_flags = [ |
| 615 "-D", | 616 "-D", |
| 616 "use_concatenated_impulse_responses", | 617 "use_concatenated_impulse_responses", |
| 617 ] | 618 ] |
| 618 } | 619 } |
| 620 html_min_css = "$blink_core_output_dir/html.css" |
| 621 grit_flags += [ |
| 622 "-E", |
| 623 "html_min_css=" + rebase_path(html_min_css), |
| 624 ] |
| 625 deps = [ |
| 626 "//third_party/WebKit/Source/core:make_minimized_css", |
| 627 ] |
| 619 } | 628 } |
| 620 | 629 |
| 621 grit("image_resources") { | 630 grit("image_resources") { |
| 622 output_dir = "$root_gen_dir/blink/public/resources" | 631 output_dir = "$root_gen_dir/blink/public/resources" |
| 623 use_qualified_include = true | 632 use_qualified_include = true |
| 624 source = "blink_image_resources.grd" | 633 source = "blink_image_resources.grd" |
| 625 outputs = [ | 634 outputs = [ |
| 626 "grit/blink_image_resources.h", | 635 "grit/blink_image_resources.h", |
| 627 "blink_image_resources_100_percent.pak", | 636 "blink_image_resources_100_percent.pak", |
| 628 "blink_image_resources_200_percent.pak", | 637 "blink_image_resources_200_percent.pak", |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 # relegated to a separate target to avoid duplication between the variants. | 756 # relegated to a separate target to avoid duplication between the variants. |
| 748 source_set("shared_typemap_traits") { | 757 source_set("shared_typemap_traits") { |
| 749 visibility = [ ":*" ] | 758 visibility = [ ":*" ] |
| 750 sources = [ | 759 sources = [ |
| 751 "web/WindowFeaturesStructTraits.cpp", | 760 "web/WindowFeaturesStructTraits.cpp", |
| 752 ] | 761 ] |
| 753 deps = [ | 762 deps = [ |
| 754 ":new_wrapper_types_mojo_bindings_shared__generator", | 763 ":new_wrapper_types_mojo_bindings_shared__generator", |
| 755 ] | 764 ] |
| 756 } | 765 } |
| OLD | NEW |