| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 grit("options_resources") { | 88 grit("options_resources") { |
| 89 source = "options_resources.grd" | 89 source = "options_resources.grd" |
| 90 outputs = [ | 90 outputs = [ |
| 91 "grit/options_resources.h", | 91 "grit/options_resources.h", |
| 92 "options_resources.pak", | 92 "options_resources.pak", |
| 93 ] | 93 ] |
| 94 output_dir = "$root_gen_dir/chrome" | 94 output_dir = "$root_gen_dir/chrome" |
| 95 } | 95 } |
| 96 | 96 |
| 97 grit("options_test_resources") { |
| 98 source = "options_test_resources.grd" |
| 99 outputs = [ |
| 100 "grit/options_test_resources.h", |
| 101 "options_test_resources.pak", |
| 102 ] |
| 103 output_dir = "$root_gen_dir/chrome" |
| 104 } |
| 105 |
| 97 grit("quota_internals_resources") { | 106 grit("quota_internals_resources") { |
| 98 source = "quota_internals_resources.grd" | 107 source = "quota_internals_resources.grd" |
| 99 outputs = [ | 108 outputs = [ |
| 100 "grit/quota_internals_resources.h", | 109 "grit/quota_internals_resources.h", |
| 101 "quota_internals_resources.pak", | 110 "quota_internals_resources.pak", |
| 102 ] | 111 ] |
| 103 output_dir = "$root_gen_dir/chrome" | 112 output_dir = "$root_gen_dir/chrome" |
| 104 } | 113 } |
| 105 | 114 |
| 106 grit("sync_file_system_internals_resources") { | 115 grit("sync_file_system_internals_resources") { |
| 107 source = "sync_file_system_internals_resources.grd" | 116 source = "sync_file_system_internals_resources.grd" |
| 108 outputs = [ | 117 outputs = [ |
| 109 "grit/sync_file_system_internals_resources.h", | 118 "grit/sync_file_system_internals_resources.h", |
| 110 "sync_file_system_internals_resources.pak", | 119 "sync_file_system_internals_resources.pak", |
| 111 ] | 120 ] |
| 112 output_dir = "$root_gen_dir/chrome" | 121 output_dir = "$root_gen_dir/chrome" |
| 113 } | 122 } |
| 114 } | 123 } |
| OLD | NEW |