| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "//breakpad:breakpad_sender", | 164 "//breakpad:breakpad_sender", |
| 165 "//chrome/app/version_assembly:chrome_exe_manifest", | 165 "//chrome/app/version_assembly:chrome_exe_manifest", |
| 166 "//chrome/browser:chrome_process_finder", | 166 "//chrome/browser:chrome_process_finder", |
| 167 "//chrome/chrome_watcher", | 167 "//chrome/chrome_watcher", |
| 168 "//chrome/chrome_watcher:client", | 168 "//chrome/chrome_watcher:client", |
| 169 "//chrome/common:constants", | 169 "//chrome/common:constants", |
| 170 "//chrome/common:metrics_constants_util_win", | 170 "//chrome/common:metrics_constants_util_win", |
| 171 "//chrome/install_static:install_static_util", | 171 "//chrome/install_static:install_static_util", |
| 172 "//chrome/installer/util:with_no_strings", | 172 "//chrome/installer/util:with_no_strings", |
| 173 "//chrome_elf", | 173 "//chrome_elf", |
| 174 "//chrome_elf:constants", |
| 174 "//components/browser_watcher:browser_watcher_client", | 175 "//components/browser_watcher:browser_watcher_client", |
| 175 "//components/crash/content/app:run_as_crashpad_handler", | 176 "//components/crash/content/app:run_as_crashpad_handler", |
| 176 "//components/flags_ui:switches", | 177 "//components/flags_ui:switches", |
| 177 "//content:sandbox_helper_win", | 178 "//content:sandbox_helper_win", |
| 178 "//content/public/common:static_switches", | 179 "//content/public/common:static_switches", |
| 179 "//crypto", | 180 "//crypto", |
| 180 "//sandbox", | 181 "//sandbox", |
| 181 ] | 182 ] |
| 182 data_deps = [ | 183 data_deps = [ |
| 183 "//chrome/app/version_assembly:version_assembly_manifest", | 184 "//chrome/app/version_assembly:version_assembly_manifest", |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 | 393 |
| 393 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 394 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 394 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 395 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
| 395 | 396 |
| 396 deps = [ | 397 deps = [ |
| 397 ":child_dependencies", | 398 ":child_dependencies", |
| 398 ":chrome_child_manifest", | 399 ":chrome_child_manifest", |
| 399 ":chrome_dll_version", | 400 ":chrome_dll_version", |
| 400 "//build/config/sanitizers:deps", | 401 "//build/config/sanitizers:deps", |
| 401 "//chrome/common:features", | 402 "//chrome/common:features", |
| 403 "//chrome_elf:constants", |
| 402 "//components/browser_watcher:browser_watcher_client", | 404 "//components/browser_watcher:browser_watcher_client", |
| 403 "//components/crash/content/app", | 405 "//components/crash/content/app", |
| 404 "//content/public/app:child", | 406 "//content/public/app:child", |
| 405 ] | 407 ] |
| 406 | 408 |
| 407 if (is_win) { | 409 if (is_win) { |
| 408 deps += [ "//chrome/install_static:install_static_util" ] | 410 deps += [ "//chrome/install_static:install_static_util" ] |
| 409 | 411 |
| 410 ldflags = [ | 412 ldflags = [ |
| 411 "/DELAYLOAD:d3d11.dll", | 413 "/DELAYLOAD:d3d11.dll", |
| (...skipping 1146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1558 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1560 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1559 "//chrome/tools/build/linux/chrome-wrapper", | 1561 "//chrome/tools/build/linux/chrome-wrapper", |
| 1560 "//third_party/xdg-utils/scripts/xdg-mime", | 1562 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1561 "//third_party/xdg-utils/scripts/xdg-settings", | 1563 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1562 ] | 1564 ] |
| 1563 outputs = [ | 1565 outputs = [ |
| 1564 "$root_out_dir/{{source_file_part}}", | 1566 "$root_out_dir/{{source_file_part}}", |
| 1565 ] | 1567 ] |
| 1566 } | 1568 } |
| 1567 } | 1569 } |
| OLD | NEW |