| 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/compiler/pgo/pgo.gni") | 7 import("//build/config/compiler/pgo/pgo.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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 "//chrome/app:command_ids", | 335 "//chrome/app:command_ids", |
| 336 "//chrome/app/theme:chrome_unscaled_resources", | 336 "//chrome/app/theme:chrome_unscaled_resources", |
| 337 "//chrome/common:features", | 337 "//chrome/common:features", |
| 338 "//chrome/install_static:install_static_util", | 338 "//chrome/install_static:install_static_util", |
| 339 "//chrome/install_static:secondary_module", | 339 "//chrome/install_static:secondary_module", |
| 340 "//chrome_elf", | 340 "//chrome_elf", |
| 341 "//components/crash/content/app", | 341 "//components/crash/content/app", |
| 342 "//components/policy:generated", | 342 "//components/policy:generated", |
| 343 "//content/app/resources", | 343 "//content/app/resources", |
| 344 "//crypto", | 344 "//crypto", |
| 345 "//headless:headless_shell_browser_lib", | |
| 346 "//net:net_resources", | 345 "//net:net_resources", |
| 347 "//ppapi/features", | 346 "//ppapi/features", |
| 348 "//third_party/cld", | 347 "//third_party/cld", |
| 349 "//third_party/wtl", | 348 "//third_party/wtl", |
| 350 "//ui/views", | 349 "//ui/views", |
| 351 ] | 350 ] |
| 352 | 351 |
| 353 ldflags = [ | 352 ldflags = [ |
| 354 "/DELAYLOAD:comdlg32.dll", | 353 "/DELAYLOAD:comdlg32.dll", |
| 355 "/DELAYLOAD:crypt32.dll", | 354 "/DELAYLOAD:crypt32.dll", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 ":chrome_dll_version", | 425 ":chrome_dll_version", |
| 427 "//build/config/sanitizers:deps", | 426 "//build/config/sanitizers:deps", |
| 428 "//chrome/browser/policy:path_parser", | 427 "//chrome/browser/policy:path_parser", |
| 429 "//chrome/common:features", | 428 "//chrome/common:features", |
| 430 "//chrome/install_static:install_static_util", | 429 "//chrome/install_static:install_static_util", |
| 431 "//chrome/install_static:secondary_module", | 430 "//chrome/install_static:secondary_module", |
| 432 "//chrome_elf", | 431 "//chrome_elf", |
| 433 "//components/browser_watcher:browser_watcher_client", | 432 "//components/browser_watcher:browser_watcher_client", |
| 434 "//components/crash/content/app", | 433 "//components/crash/content/app", |
| 435 "//content/public/app:child", | 434 "//content/public/app:child", |
| 436 "//headless:headless_shell_child_lib", | |
| 437 ] | 435 ] |
| 438 | 436 |
| 439 ldflags = [ | 437 ldflags = [ |
| 440 "/DELAYLOAD:d3d11.dll", | 438 "/DELAYLOAD:d3d11.dll", |
| 441 "/DELAYLOAD:d3d9.dll", | 439 "/DELAYLOAD:d3d9.dll", |
| 442 "/DELAYLOAD:dwmapi.dll", | 440 "/DELAYLOAD:dwmapi.dll", |
| 443 "/DELAYLOAD:dxva2.dll", | 441 "/DELAYLOAD:dxva2.dll", |
| 444 "/DELAYLOAD:esent.dll", | 442 "/DELAYLOAD:esent.dll", |
| 445 "/DELAYLOAD:wininet.dll", | 443 "/DELAYLOAD:wininet.dll", |
| 446 ] | 444 ] |
| (...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1733 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1731 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1734 "//chrome/tools/build/linux/chrome-wrapper", | 1732 "//chrome/tools/build/linux/chrome-wrapper", |
| 1735 "//third_party/xdg-utils/scripts/xdg-mime", | 1733 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1736 "//third_party/xdg-utils/scripts/xdg-settings", | 1734 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1737 ] | 1735 ] |
| 1738 outputs = [ | 1736 outputs = [ |
| 1739 "$root_out_dir/{{source_file_part}}", | 1737 "$root_out_dir/{{source_file_part}}", |
| 1740 ] | 1738 ] |
| 1741 } | 1739 } |
| 1742 } | 1740 } |
| OLD | NEW |