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

Unified Diff: ui/resources/BUILD.gn

Issue 854713003: More old files deletion. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix tryjobs? Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/win/dpi.cc ('k') | ui/resources/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/resources/BUILD.gn
diff --git a/ui/resources/BUILD.gn b/ui/resources/BUILD.gn
deleted file mode 100644
index e44bc1d514a83fa5d22ef2286385e914b6c71dba..0000000000000000000000000000000000000000
--- a/ui/resources/BUILD.gn
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("//tools/grit/grit_rule.gni")
-import("//tools/grit/repack.gni")
-
-# GYP version: ui/resources/ui_resources.gyp:ui_resources
-group("resources") {
- deps = [
- ":ui_resources_grd",
- ":ui_unscaled_resources_grd",
- ]
-}
-
-grit("ui_resources_grd") {
- source = "ui_resources.grd"
- outputs = [
- "grit/ui_resources.h",
- "grit/ui_resources_map.cc",
- "grit/ui_resources_map.h",
- "ui_resources_100_percent.pak",
- "ui_resources_200_percent.pak",
- ]
-}
-
-grit("ui_unscaled_resources_grd") {
- source = "ui_unscaled_resources.grd"
- use_qualified_include = true
- outputs = [
- "grit/ui_unscaled_resources.h",
- "ui_unscaled_resources.rc",
- ]
-}
-
-if (!is_mac) {
- copy("copy_ui_resources_100_percent") {
- sources = [
- "$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
- ]
- outputs = [
- "$root_out_dir/ui_resources_100_percent.pak",
- ]
- deps = [
- "//ui/resources",
- ]
- }
-}
-
-# On iOS and Mac the string resources need to go into a locale subfolder, which
-# introduces an extra dependency.
-#
-# GYP version: ui/resources/ui_resources.gyp:ui_test_pak
-# (copy_ui_test_pak action)
-if (is_ios || is_mac) {
- group("ui_test_pak") {
- deps = [
- ":repack_ui_test_pak",
- ":repack_ui_test_mac_locale_pack",
- ]
- }
-} else {
- group("ui_test_pak") {
- deps = [
- ":repack_ui_test_pak",
- ]
- }
-}
-
-# GYP version: ui/resources/ui_resources.gyp:ui_test_pak
-repack("repack_ui_test_pak") {
- # Depend on ui_test_pak instead of this one.
- visibility = [ ":ui_test_pak" ]
-
- sources = [
- "$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
- "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
- "$root_gen_dir/ui/strings/ui_strings_en-US.pak",
- ]
-
- output = "$root_out_dir/ui_test.pak"
-
- deps = [
- "//ui/resources",
- "//ui/strings",
- ]
-
- if (!is_mac) {
- deps += [ ":copy_ui_resources_100_percent" ]
- }
-}
-
-# Repack just the strings for the framework locales on Mac and iOS. This
-# emulates repack_locales.py, but just for en-US. Note ui_test.pak is not simply
-# copied, because it causes leaks from allocations within system libraries when
-# trying to load non-string resources. http://crbug.com/413034.
-repack("repack_ui_test_mac_locale_pack") {
- visibility = [ ":ui_test_pak" ]
-
- sources = [
- "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
- "$root_gen_dir/ui/strings/ui_strings_en-US.pak",
- ]
-
- output = "$root_out_dir/ui/en.lproj/locale.pak"
-
- deps = [
- "//ui/strings",
- ]
-}
« no previous file with comments | « ui/gfx/win/dpi.cc ('k') | ui/resources/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698