| 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/compiler/pgo/pgo.gni") | 8 import("//build/config/compiler/pgo/pgo.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/locales.gni") | 10 import("//build/config/locales.gni") |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 "//chrome/app:command_ids", | 330 "//chrome/app:command_ids", |
| 331 "//chrome/app/theme:chrome_unscaled_resources", | 331 "//chrome/app/theme:chrome_unscaled_resources", |
| 332 "//chrome/common:features", | 332 "//chrome/common:features", |
| 333 "//chrome/install_static:install_static_util", | 333 "//chrome/install_static:install_static_util", |
| 334 "//chrome/install_static:secondary_module", | 334 "//chrome/install_static:secondary_module", |
| 335 "//chrome_elf", | 335 "//chrome_elf", |
| 336 "//components/crash/content/app", | 336 "//components/crash/content/app", |
| 337 "//components/policy:generated", | 337 "//components/policy:generated", |
| 338 "//content/app/resources", | 338 "//content/app/resources", |
| 339 "//crypto", | 339 "//crypto", |
| 340 "//headless:headless_shell_main_lib", |
| 340 "//net:net_resources", | 341 "//net:net_resources", |
| 341 "//ppapi/features", | 342 "//ppapi/features", |
| 342 "//third_party/cld", | 343 "//third_party/cld", |
| 343 "//third_party/wtl", | 344 "//third_party/wtl", |
| 344 "//ui/views", | 345 "//ui/views", |
| 345 ] | 346 ] |
| 346 | 347 |
| 347 ldflags = [ | 348 ldflags = [ |
| 348 "/DELAYLOAD:comdlg32.dll", | 349 "/DELAYLOAD:comdlg32.dll", |
| 349 "/DELAYLOAD:crypt32.dll", | 350 "/DELAYLOAD:crypt32.dll", |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 ":chrome_dll_version", | 422 ":chrome_dll_version", |
| 422 "//build/config/sanitizers:deps", | 423 "//build/config/sanitizers:deps", |
| 423 "//chrome/browser/policy:path_parser", | 424 "//chrome/browser/policy:path_parser", |
| 424 "//chrome/common:features", | 425 "//chrome/common:features", |
| 425 "//chrome/install_static:install_static_util", | 426 "//chrome/install_static:install_static_util", |
| 426 "//chrome/install_static:secondary_module", | 427 "//chrome/install_static:secondary_module", |
| 427 "//chrome_elf", | 428 "//chrome_elf", |
| 428 "//components/browser_watcher:browser_watcher_client", | 429 "//components/browser_watcher:browser_watcher_client", |
| 429 "//components/crash/content/app", | 430 "//components/crash/content/app", |
| 430 "//content/public/app:child", | 431 "//content/public/app:child", |
| 432 "//headless:headless_shell_child_lib", |
| 431 "//pdf", | 433 "//pdf", |
| 432 ] | 434 ] |
| 433 | 435 |
| 434 ldflags = [ | 436 ldflags = [ |
| 435 "/DELAYLOAD:d3d11.dll", | 437 "/DELAYLOAD:d3d11.dll", |
| 436 "/DELAYLOAD:d3d9.dll", | 438 "/DELAYLOAD:d3d9.dll", |
| 437 "/DELAYLOAD:dwmapi.dll", | 439 "/DELAYLOAD:dwmapi.dll", |
| 438 "/DELAYLOAD:dxva2.dll", | 440 "/DELAYLOAD:dxva2.dll", |
| 439 "/DELAYLOAD:esent.dll", | 441 "/DELAYLOAD:esent.dll", |
| 440 "/DELAYLOAD:wininet.dll", | 442 "/DELAYLOAD:wininet.dll", |
| (...skipping 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1683 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1682 "//chrome/tools/build/linux/chrome-wrapper", | 1684 "//chrome/tools/build/linux/chrome-wrapper", |
| 1683 "//third_party/xdg-utils/scripts/xdg-mime", | 1685 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1684 "//third_party/xdg-utils/scripts/xdg-settings", | 1686 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1685 ] | 1687 ] |
| 1686 outputs = [ | 1688 outputs = [ |
| 1687 "$root_out_dir/{{source_file_part}}", | 1689 "$root_out_dir/{{source_file_part}}", |
| 1688 ] | 1690 ] |
| 1689 } | 1691 } |
| 1690 } | 1692 } |
| OLD | NEW |