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("//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 Loading... |
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_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 Loading... |
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 } |
OLD | NEW |