| 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("//chrome/common/features.gni") | 5 import("//chrome/common/features.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 | 7 |
| 8 grit("net_internals_resources") { | 8 grit("net_internals_resources") { |
| 9 source = "net_internals_resources.grd" | 9 source = "net_internals_resources.grd" |
| 10 use_qualified_include = true | 10 use_qualified_include = true |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 grit("sync_file_system_internals_resources") { | 143 grit("sync_file_system_internals_resources") { |
| 144 source = "sync_file_system_internals_resources.grd" | 144 source = "sync_file_system_internals_resources.grd" |
| 145 use_qualified_include = true | 145 use_qualified_include = true |
| 146 defines = chrome_grit_defines | 146 defines = chrome_grit_defines |
| 147 outputs = [ | 147 outputs = [ |
| 148 "grit/sync_file_system_internals_resources.h", | 148 "grit/sync_file_system_internals_resources.h", |
| 149 "sync_file_system_internals_resources.pak", | 149 "sync_file_system_internals_resources.pak", |
| 150 ] | 150 ] |
| 151 output_dir = "$root_gen_dir/chrome" | 151 output_dir = "$root_gen_dir/chrome" |
| 152 } | 152 } |
| 153 |
| 154 grit("webapks_ui_resources") { |
| 155 source = "webapks_ui_resources.grd" |
| 156 use_qualified_include = true |
| 157 defines = chrome_grit_defines |
| 158 outputs = [ |
| 159 "grit/webapks_ui_resources.h", |
| 160 "webapks_ui_resources.pak", |
| 161 ] |
| 162 output_dir = "$root_gen_dir/chrome" |
| 163 } |
| 153 } | 164 } |
| OLD | NEW |