| 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("//extensions/extensions.gni") | 5 import("//extensions/extensions.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 assert(enable_extensions) | 10 assert(enable_extensions) |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 113 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 114 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 114 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 115 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 115 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 116 ] | 116 ] |
| 117 | 117 |
| 118 output = "$root_out_dir/extensions_shell_and_test.pak" | 118 output = "$root_out_dir/extensions_shell_and_test.pak" |
| 119 | 119 |
| 120 deps = [ | 120 deps = [ |
| 121 ":extensions_resources", | 121 ":extensions_resources", |
| 122 "//content:resources", | 122 "//content:resources", |
| 123 "//content/app/strings", | |
| 124 "//content/browser/devtools:devtools_resources", | 123 "//content/browser/devtools:devtools_resources", |
| 125 "//content/shell:resources", | 124 "//content/shell:resources", |
| 126 "//extensions/shell:resources", | 125 "//extensions/shell:resources", |
| 127 "//extensions/strings", | 126 "//extensions/strings", |
| 128 "//third_party/WebKit/public:image_resources", | 127 "//third_party/WebKit/public:image_resources", |
| 129 "//third_party/WebKit/public:resources", | 128 "//third_party/WebKit/public:resources", |
| 130 "//ui/resources", | 129 "//ui/resources", |
| 131 "//ui/strings", | 130 "//ui/strings", |
| 132 ] | 131 ] |
| 133 } | 132 } |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 ] | 215 ] |
| 217 | 216 |
| 218 if (is_win) { | 217 if (is_win) { |
| 219 deps += [ "//base/allocator" ] | 218 deps += [ "//base/allocator" ] |
| 220 } | 219 } |
| 221 | 220 |
| 222 if (is_mac) { | 221 if (is_mac) { |
| 223 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. | 222 deps += [ "shell:app_shell" ] # Needed for App Shell.app's Helper. |
| 224 } | 223 } |
| 225 } | 224 } |
| OLD | NEW |