| 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("memory_internals_resources") { | |
| 9 source = "memory_internals_resources.grd" | |
| 10 defines = chrome_grit_defines | |
| 11 outputs = [ | |
| 12 "grit/memory_internals_resources.h", | |
| 13 "memory_internals_resources.pak", | |
| 14 ] | |
| 15 output_dir = "$root_gen_dir/chrome" | |
| 16 } | |
| 17 | |
| 18 grit("net_internals_resources") { | 8 grit("net_internals_resources") { |
| 19 source = "net_internals_resources.grd" | 9 source = "net_internals_resources.grd" |
| 20 defines = chrome_grit_defines | 10 defines = chrome_grit_defines |
| 21 outputs = [ | 11 outputs = [ |
| 22 "grit/net_internals_resources.h", | 12 "grit/net_internals_resources.h", |
| 23 "net_internals_resources.pak", | 13 "net_internals_resources.pak", |
| 24 ] | 14 ] |
| 25 output_dir = "$root_gen_dir/chrome" | 15 output_dir = "$root_gen_dir/chrome" |
| 26 } | 16 } |
| 27 | 17 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 grit("sync_file_system_internals_resources") { | 124 grit("sync_file_system_internals_resources") { |
| 135 source = "sync_file_system_internals_resources.grd" | 125 source = "sync_file_system_internals_resources.grd" |
| 136 defines = chrome_grit_defines | 126 defines = chrome_grit_defines |
| 137 outputs = [ | 127 outputs = [ |
| 138 "grit/sync_file_system_internals_resources.h", | 128 "grit/sync_file_system_internals_resources.h", |
| 139 "sync_file_system_internals_resources.pak", | 129 "sync_file_system_internals_resources.pak", |
| 140 ] | 130 ] |
| 141 output_dir = "$root_gen_dir/chrome" | 131 output_dir = "$root_gen_dir/chrome" |
| 142 } | 132 } |
| 143 } | 133 } |
| OLD | NEW |