Chromium Code Reviews| OLD | NEW | 
|---|---|
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build/config/locales.gni") | 5 import("//build/config/locales.gni") | 
| 6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") | 
| 7 import("//extensions/features/features.gni") | 7 import("//extensions/features/features.gni") | 
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") | 
| 9 import("chrome_repack_locales.gni") | 9 import("chrome_repack_locales.gni") | 
| 10 | 10 | 
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 91 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 91 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 
| 92 "$root_gen_dir/chrome/browser_resources.pak", | 92 "$root_gen_dir/chrome/browser_resources.pak", | 
| 93 "$root_gen_dir/chrome/chrome_unscaled_resources.pak", | 93 "$root_gen_dir/chrome/chrome_unscaled_resources.pak", | 
| 94 "$root_gen_dir/chrome/common_resources.pak", | 94 "$root_gen_dir/chrome/common_resources.pak", | 
| 95 "$root_gen_dir/chrome/invalidations_resources.pak", | 95 "$root_gen_dir/chrome/invalidations_resources.pak", | 
| 96 "$root_gen_dir/chrome/net_internals_resources.pak", | 96 "$root_gen_dir/chrome/net_internals_resources.pak", | 
| 97 "$root_gen_dir/chrome/password_manager_internals_resources.pak", | 97 "$root_gen_dir/chrome/password_manager_internals_resources.pak", | 
| 98 "$root_gen_dir/chrome/policy_resources.pak", | 98 "$root_gen_dir/chrome/policy_resources.pak", | 
| 99 "$root_gen_dir/chrome/task_scheduler_internals_resources.pak", | 99 "$root_gen_dir/chrome/task_scheduler_internals_resources.pak", | 
| 100 "$root_gen_dir/chrome/translate_internals_resources.pak", | 100 "$root_gen_dir/chrome/translate_internals_resources.pak", | 
| 101 "$root_gen_dir/chrome/webapks_ui_resources.pak", | |
| 
 
Dan Beam
2017/01/27 21:52:15
i think you only want to add these on android, rig
 
gonzalon
2017/01/27 22:45:03
Done.
 
 | |
| 101 "$root_gen_dir/components/components_resources.pak", | 102 "$root_gen_dir/components/components_resources.pak", | 
| 102 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", | 103 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", | 
| 103 "$root_gen_dir/content/content_resources.pak", | 104 "$root_gen_dir/content/content_resources.pak", | 
| 104 "$root_gen_dir/net/net_resources.pak", | 105 "$root_gen_dir/net/net_resources.pak", | 
| 105 "$root_gen_dir/ui/resources/webui_resources.pak", | 106 "$root_gen_dir/ui/resources/webui_resources.pak", | 
| 106 ] | 107 ] | 
| 107 deps = [ | 108 deps = [ | 
| 108 "//chrome/app/theme:chrome_unscaled_resources", | 109 "//chrome/app/theme:chrome_unscaled_resources", | 
| 109 "//chrome/browser:resources", | 110 "//chrome/browser:resources", | 
| 110 "//chrome/browser/resources:invalidations_resources", | 111 "//chrome/browser/resources:invalidations_resources", | 
| 111 "//chrome/browser/resources:net_internals_resources", | 112 "//chrome/browser/resources:net_internals_resources", | 
| 112 "//chrome/browser/resources:password_manager_internals_resources", | 113 "//chrome/browser/resources:password_manager_internals_resources", | 
| 113 "//chrome/browser/resources:policy_resources", | 114 "//chrome/browser/resources:policy_resources", | 
| 114 "//chrome/browser/resources:task_scheduler_internals_resources", | 115 "//chrome/browser/resources:task_scheduler_internals_resources", | 
| 115 "//chrome/browser/resources:translate_internals_resources", | 116 "//chrome/browser/resources:translate_internals_resources", | 
| 117 "//chrome/browser/resources:webapks_ui_resources", | |
| 116 "//chrome/common:resources", | 118 "//chrome/common:resources", | 
| 117 "//components/resources", | 119 "//components/resources", | 
| 118 "//content:resources", | 120 "//content:resources", | 
| 119 "//content/browser/tracing:resources", | 121 "//content/browser/tracing:resources", | 
| 120 "//net:net_resources", | 122 "//net:net_resources", | 
| 121 "//third_party/WebKit/public:resources", | 123 "//third_party/WebKit/public:resources", | 
| 122 "//ui/resources", | 124 "//ui/resources", | 
| 123 ] | 125 ] | 
| 124 if (defined(invoker.deps)) { | 126 if (defined(invoker.deps)) { | 
| 125 deps += invoker.deps | 127 deps += invoker.deps | 
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 262 ":${target_name}_locales", | 264 ":${target_name}_locales", | 
| 263 ] | 265 ] | 
| 264 if (enable_hidpi) { | 266 if (enable_hidpi) { | 
| 265 public_deps += [ ":${target_name}_200_percent" ] | 267 public_deps += [ ":${target_name}_200_percent" ] | 
| 266 } | 268 } | 
| 267 if (defined(invoker.public_deps)) { | 269 if (defined(invoker.public_deps)) { | 
| 268 public_deps += invoker.public_deps | 270 public_deps += invoker.public_deps | 
| 269 } | 271 } | 
| 270 } | 272 } | 
| 271 } | 273 } | 
| OLD | NEW |