| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 source = "translate_internals_resources.grd" | 55 source = "translate_internals_resources.grd" |
| 56 use_qualified_include = true | 56 use_qualified_include = true |
| 57 defines = chrome_grit_defines | 57 defines = chrome_grit_defines |
| 58 outputs = [ | 58 outputs = [ |
| 59 "grit/translate_internals_resources.h", | 59 "grit/translate_internals_resources.h", |
| 60 "translate_internals_resources.pak", | 60 "translate_internals_resources.pak", |
| 61 ] | 61 ] |
| 62 output_dir = "$root_gen_dir/chrome" | 62 output_dir = "$root_gen_dir/chrome" |
| 63 } | 63 } |
| 64 | 64 |
| 65 # GYP version: copy command of chrome_extra_resources | |
| 66 copy("extension_resource_demo") { | 65 copy("extension_resource_demo") { |
| 67 sources = [ | 66 sources = [ |
| 68 "extension_resource/demo/library.js", | 67 "extension_resource/demo/library.js", |
| 69 ] | 68 ] |
| 70 outputs = [ | 69 outputs = [ |
| 71 "$root_out_dir/resources/extension/demo/library.js", | 70 "$root_out_dir/resources/extension/demo/library.js", |
| 72 ] | 71 ] |
| 73 } | 72 } |
| 74 | 73 |
| 75 if (!is_ios) { | 74 if (!is_ios) { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 source = "sync_file_system_internals_resources.grd" | 137 source = "sync_file_system_internals_resources.grd" |
| 139 use_qualified_include = true | 138 use_qualified_include = true |
| 140 defines = chrome_grit_defines | 139 defines = chrome_grit_defines |
| 141 outputs = [ | 140 outputs = [ |
| 142 "grit/sync_file_system_internals_resources.h", | 141 "grit/sync_file_system_internals_resources.h", |
| 143 "sync_file_system_internals_resources.pak", | 142 "sync_file_system_internals_resources.pak", |
| 144 ] | 143 ] |
| 145 output_dir = "$root_gen_dir/chrome" | 144 output_dir = "$root_gen_dir/chrome" |
| 146 } | 145 } |
| 147 } | 146 } |
| OLD | NEW |