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 import("//tools/grit/repack.gni") | 6 import("//tools/grit/repack.gni") |
7 | 7 |
8 # GYP version: extensions/extensions_resources.gyp:extensions_resources | 8 # GYP version: extensions/extensions_resources.gyp:extensions_resources |
9 group("extensions_resources") { | 9 group("extensions_resources") { |
10 deps = [ | 10 deps = [ |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 "$root_gen_dir/chrome/extensions_api_resources.pak", | 116 "$root_gen_dir/chrome/extensions_api_resources.pak", |
117 # TODO(jamescook): Extract the extension/app related resources | 117 # TODO(jamescook): Extract the extension/app related resources |
118 # from generated_resources_en-US.pak. http://crbug.com/397250 | 118 # from generated_resources_en-US.pak. http://crbug.com/397250 |
119 "$root_gen_dir/chrome/generated_resources_en-US.pak", | 119 "$root_gen_dir/chrome/generated_resources_en-US.pak", |
120 "$root_gen_dir/chrome/renderer_resources_100_percent.pak", | 120 "$root_gen_dir/chrome/renderer_resources_100_percent.pak", |
121 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", | 121 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", |
122 "$root_gen_dir/content/content_resources.pak", | 122 "$root_gen_dir/content/content_resources.pak", |
123 "$root_gen_dir/content/shell/shell_resources.pak", | 123 "$root_gen_dir/content/shell/shell_resources.pak", |
124 "$root_gen_dir/extensions/extensions_renderer_resources.pak", | 124 "$root_gen_dir/extensions/extensions_renderer_resources.pak", |
125 "$root_gen_dir/extensions/extensions_resources.pak", | 125 "$root_gen_dir/extensions/extensions_resources.pak", |
126 "$root_gen_dir/extensions/shell/app_shell_resources.pak", | |
127 "$root_gen_dir/extensions/strings/extensions_strings_en-US.pak", | 126 "$root_gen_dir/extensions/strings/extensions_strings_en-US.pak", |
128 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 127 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
129 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 128 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
130 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 129 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
131 "$root_gen_dir/webkit/devtools_resources.pak", | 130 "$root_gen_dir/webkit/devtools_resources.pak", |
132 ] | 131 ] |
133 | 132 |
134 output = "$root_out_dir/extensions_shell_and_test.pak" | 133 output = "$root_out_dir/extensions_shell_and_test.pak" |
135 | 134 |
136 deps = [ | 135 deps = [ |
137 ":extensions_resources", | 136 ":extensions_resources", |
138 # Need extension related resources in common_resources.pak and | 137 # Need extension related resources in common_resources.pak and |
139 # renderer_resources_100_percent.pak | 138 # renderer_resources_100_percent.pak |
140 "//chrome:resources", | 139 "//chrome:resources", |
141 # Need dev-tools related resources in shell_resources.pak and | 140 # Need dev-tools related resources in shell_resources.pak and |
142 # devtools_resources.pak. | 141 # devtools_resources.pak. |
143 "//content/browser/devtools:resources", | 142 "//content/browser/devtools:resources", |
144 "//content/shell:resources", | 143 "//content/shell:resources", |
145 "//content:resources", | 144 "//content:resources", |
146 "//extensions/shell:resources", | |
147 "//extensions/strings", | 145 "//extensions/strings", |
148 "//ui/resources", | 146 "//ui/resources", |
149 "//ui/strings", | 147 "//ui/strings", |
150 ] | 148 ] |
151 } | 149 } |
152 | 150 |
153 # TODO(GYP): Enable this link errors are fixed. | 151 # TODO(GYP): Enable this link errors are fixed. |
154 # This gives a link error in web_modal that is very mysterious. The GYP build | 152 # This gives a link error in web_modal that is very mysterious. The GYP build |
155 # doesn't seem to pull in web_content_modal_dialog_manager.o since the build | 153 # doesn't seem to pull in web_content_modal_dialog_manager.o since the build |
156 # does not have a reference to CreateNativeWebModalManager but it still links. | 154 # does not have a reference to CreateNativeWebModalManager but it still links. |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 "//third_party/leveldatabase", | 254 "//third_party/leveldatabase", |
257 ] | 255 ] |
258 | 256 |
259 if (is_win) { | 257 if (is_win) { |
260 deps += [ | 258 deps += [ |
261 "//base/allocator", | 259 "//base/allocator", |
262 ] | 260 ] |
263 } | 261 } |
264 } | 262 } |
265 } | 263 } |
OLD | NEW |