| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 grit("signin_internals_resources") { | 43 grit("signin_internals_resources") { |
| 44 source = "signin_internals_resources.grd" | 44 source = "signin_internals_resources.grd" |
| 45 outputs = [ | 45 outputs = [ |
| 46 "grit/signin_internals_resources.h", | 46 "grit/signin_internals_resources.h", |
| 47 "signin_internals_resources.pak", | 47 "signin_internals_resources.pak", |
| 48 ] | 48 ] |
| 49 output_dir = "$root_gen_dir/chrome" | 49 output_dir = "$root_gen_dir/chrome" |
| 50 } | 50 } |
| 51 | 51 |
| 52 grit("sync_internals_resources") { | |
| 53 source = "sync_internals_resources.grd" | |
| 54 outputs = [ | |
| 55 "grit/sync_internals_resources.h", | |
| 56 "sync_internals_resources.pak", | |
| 57 ] | |
| 58 output_dir = "$root_gen_dir/chrome" | |
| 59 } | |
| 60 | |
| 61 grit("translate_internals_resources") { | 52 grit("translate_internals_resources") { |
| 62 source = "translate_internals_resources.grd" | 53 source = "translate_internals_resources.grd" |
| 63 outputs = [ | 54 outputs = [ |
| 64 "grit/translate_internals_resources.h", | 55 "grit/translate_internals_resources.h", |
| 65 "translate_internals_resources.pak", | 56 "translate_internals_resources.pak", |
| 66 ] | 57 ] |
| 67 output_dir = "$root_gen_dir/chrome" | 58 output_dir = "$root_gen_dir/chrome" |
| 68 } | 59 } |
| 69 | 60 |
| 70 # GYP version: copy command of chrome_extra_resources | 61 # GYP version: copy command of chrome_extra_resources |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 120 |
| 130 grit("sync_file_system_internals_resources") { | 121 grit("sync_file_system_internals_resources") { |
| 131 source = "sync_file_system_internals_resources.grd" | 122 source = "sync_file_system_internals_resources.grd" |
| 132 outputs = [ | 123 outputs = [ |
| 133 "grit/sync_file_system_internals_resources.h", | 124 "grit/sync_file_system_internals_resources.h", |
| 134 "sync_file_system_internals_resources.pak", | 125 "sync_file_system_internals_resources.pak", |
| 135 ] | 126 ] |
| 136 output_dir = "$root_gen_dir/chrome" | 127 output_dir = "$root_gen_dir/chrome" |
| 137 } | 128 } |
| 138 } | 129 } |
| OLD | NEW |