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("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 ":packed_extra_resources", | 215 ":packed_extra_resources", |
216 ":packed_resources", | 216 ":packed_resources", |
217 ] | 217 ] |
218 deps += [ | 218 deps += [ |
219 "//components/startup_metric_utils/browser:lib", | 219 "//components/startup_metric_utils/browser:lib", |
220 | 220 |
221 # Precompiled plugins that need to get copied to the output directory. | 221 # Precompiled plugins that need to get copied to the output directory. |
222 # On Mac, internal plugins go inside the framework, so these | 222 # On Mac, internal plugins go inside the framework, so these |
223 # dependencies are on chrome.dll. | 223 # dependencies are on chrome.dll. |
224 "//third_party/adobe/flash:flapper_binaries", | 224 "//third_party/adobe/flash:flapper_binaries", |
225 "//third_party/widevine/cdm:widevinecdmadapter", | |
226 ] | 225 ] |
227 | 226 |
| 227 data_deps += [ "//third_party/widevine/cdm:widevinecdmadapter" ] |
| 228 |
228 if (is_multi_dll_chrome) { | 229 if (is_multi_dll_chrome) { |
229 defines += [ "CHROME_MULTIPLE_DLL" ] | 230 defines += [ "CHROME_MULTIPLE_DLL" ] |
230 data_deps += [ ":chrome_child" ] | 231 data_deps += [ ":chrome_child" ] |
231 } | 232 } |
232 } | 233 } |
233 } # !is_android && !is_mac | 234 } # !is_android && !is_mac |
234 | 235 |
235 if (is_win) { | 236 if (is_win) { |
236 # This target is a forwarding target to compile the necessary DLLs used | 237 # This target is a forwarding target to compile the necessary DLLs used |
237 # by Chrome. | 238 # by Chrome. |
(...skipping 1173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1411 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1412 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1412 "//chrome/tools/build/linux/chrome-wrapper", | 1413 "//chrome/tools/build/linux/chrome-wrapper", |
1413 "//third_party/xdg-utils/scripts/xdg-mime", | 1414 "//third_party/xdg-utils/scripts/xdg-mime", |
1414 "//third_party/xdg-utils/scripts/xdg-settings", | 1415 "//third_party/xdg-utils/scripts/xdg-settings", |
1415 ] | 1416 ] |
1416 outputs = [ | 1417 outputs = [ |
1417 "$root_out_dir/{{source_file_part}}", | 1418 "$root_out_dir/{{source_file_part}}", |
1418 ] | 1419 ] |
1419 } | 1420 } |
1420 } | 1421 } |
OLD | NEW |