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

Side by Side Diff: chrome/browser/resources/BUILD.gn

Issue 985533002: Set up serving infrastructure for c/b/r/settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unrelated changes Created 5 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
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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 grit("memory_internals_resources") { 7 grit("memory_internals_resources") {
8 source = "memory_internals_resources.grd" 8 source = "memory_internals_resources.grd"
9 outputs = [ 9 outputs = [
10 "grit/memory_internals_resources.h", 10 "grit/memory_internals_resources.h",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 source = "component_extension_resources.grd" 82 source = "component_extension_resources.grd"
83 outputs = [ 83 outputs = [
84 "grit/component_extension_resources.h", 84 "grit/component_extension_resources.h",
85 "grit/component_extension_resources_map.cc", 85 "grit/component_extension_resources_map.cc",
86 "grit/component_extension_resources_map.h", 86 "grit/component_extension_resources_map.h",
87 "component_extension_resources.pak", 87 "component_extension_resources.pak",
88 ] 88 ]
89 output_dir = "$root_gen_dir/chrome" 89 output_dir = "$root_gen_dir/chrome"
90 } 90 }
91 91
92 grit("settings_resources") {
93 source = "settings/settings_resources.grd"
94 outputs = [
95 "grit/settings_resources.h",
96 "grit/settings_resources_map.cc",
97 "grit/settings_resources_map.h",
98 "settings_resources.pak",
99 ]
100 output_dir = "$root_gen_dir/chrome"
101 }
102
92 grit("options_resources") { 103 grit("options_resources") {
93 source = "options_resources.grd" 104 source = "options_resources.grd"
94 outputs = [ 105 outputs = [
95 "grit/options_resources.h", 106 "grit/options_resources.h",
96 "options_resources.pak", 107 "options_resources.pak",
97 ] 108 ]
98 output_dir = "$root_gen_dir/chrome" 109 output_dir = "$root_gen_dir/chrome"
99 } 110 }
100 111
101 grit("options_test_resources") { 112 grit("options_test_resources") {
(...skipping 16 matching lines...) Expand all
118 129
119 grit("sync_file_system_internals_resources") { 130 grit("sync_file_system_internals_resources") {
120 source = "sync_file_system_internals_resources.grd" 131 source = "sync_file_system_internals_resources.grd"
121 outputs = [ 132 outputs = [
122 "grit/sync_file_system_internals_resources.h", 133 "grit/sync_file_system_internals_resources.h",
123 "sync_file_system_internals_resources.pak", 134 "sync_file_system_internals_resources.pak",
124 ] 135 ]
125 output_dir = "$root_gen_dir/chrome" 136 output_dir = "$root_gen_dir/chrome"
126 } 137 }
127 } 138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698