| 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 } | 9 } |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 grit("sync_internals_resources") { | 27 grit("sync_internals_resources") { |
| 28 source = "sync_internals_resources.grd" | 28 source = "sync_internals_resources.grd" |
| 29 } | 29 } |
| 30 | 30 |
| 31 grit("translate_internals_resources") { | 31 grit("translate_internals_resources") { |
| 32 source = "translate_internals_resources.grd" | 32 source = "translate_internals_resources.grd" |
| 33 } | 33 } |
| 34 | 34 |
| 35 # GYP version: copy command of chrome_extra_resources | |
| 36 copy("extension_resource_demo") { | |
| 37 sources = [ "extension_resource/demo/library.js" ] | |
| 38 outputs = [ "$root_out_dir/resources/extension/demo/library.js" ] | |
| 39 } | |
| 40 | |
| 41 if (!is_ios) { | |
| 42 grit("component_extension_resources") { | |
| 43 source = "component_extension_resources.grd" | |
| 44 } | |
| 45 | |
| 46 grit("options_resources") { | |
| 47 source = "options_resources.grd" | |
| 48 } | |
| 49 | |
| 50 grit("quota_internals_resources") { | |
| 51 source = "quota_internals_resources.grd" | |
| 52 } | |
| 53 | |
| 54 grit("sync_file_system_internals_resources") { | |
| 55 source = "sync_file_system_internals_resources.grd" | |
| 56 } | |
| 57 } | |
| OLD | NEW |