| 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 "//chrome/app:command_ids", | 315 "//chrome/app:command_ids", |
| 316 "//chrome/app/theme:chrome_unscaled_resources", | 316 "//chrome/app/theme:chrome_unscaled_resources", |
| 317 "//chrome/common:features", | 317 "//chrome/common:features", |
| 318 "//chrome/install_static:install_static_util", | 318 "//chrome/install_static:install_static_util", |
| 319 "//chrome_elf", | 319 "//chrome_elf", |
| 320 "//components/crash/content/app", | 320 "//components/crash/content/app", |
| 321 "//components/policy:generated", | 321 "//components/policy:generated", |
| 322 "//content/app/resources", | 322 "//content/app/resources", |
| 323 "//crypto", | 323 "//crypto", |
| 324 "//net:net_resources", | 324 "//net:net_resources", |
| 325 "//ppapi/features", |
| 325 "//third_party/cld", | 326 "//third_party/cld", |
| 326 "//third_party/wtl", | 327 "//third_party/wtl", |
| 327 "//ui/views", | 328 "//ui/views", |
| 328 ] | 329 ] |
| 329 | 330 |
| 330 ldflags = [ | 331 ldflags = [ |
| 331 "/DELAYLOAD:comdlg32.dll", | 332 "/DELAYLOAD:comdlg32.dll", |
| 332 "/DELAYLOAD:crypt32.dll", | 333 "/DELAYLOAD:crypt32.dll", |
| 333 "/DELAYLOAD:cryptui.dll", | 334 "/DELAYLOAD:cryptui.dll", |
| 334 "/DELAYLOAD:dhcpcsvc.dll", | 335 "/DELAYLOAD:dhcpcsvc.dll", |
| (...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1611 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1612 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1612 "//chrome/tools/build/linux/chrome-wrapper", | 1613 "//chrome/tools/build/linux/chrome-wrapper", |
| 1613 "//third_party/xdg-utils/scripts/xdg-mime", | 1614 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1614 "//third_party/xdg-utils/scripts/xdg-settings", | 1615 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1615 ] | 1616 ] |
| 1616 outputs = [ | 1617 outputs = [ |
| 1617 "$root_out_dir/{{source_file_part}}", | 1618 "$root_out_dir/{{source_file_part}}", |
| 1618 ] | 1619 ] |
| 1619 } | 1620 } |
| 1620 } | 1621 } |
| OLD | NEW |