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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 "$root_out_dir/chrome_100_percent.pak", | 171 "$root_out_dir/chrome_100_percent.pak", |
172 "$root_out_dir/locales/en-US.pak", | 172 "$root_out_dir/locales/en-US.pak", |
173 "$root_out_dir/locales/fr.pak", | 173 "$root_out_dir/locales/fr.pak", |
174 ] | 174 ] |
175 } | 175 } |
176 | 176 |
177 data_deps = [] | 177 data_deps = [] |
178 | 178 |
179 if (is_win) { | 179 if (is_win) { |
180 sources += [ | 180 sources += [ |
181 "app/chrome_exe.rc", | 181 # "app/chrome_exe.rc", |
182 "app/chrome_exe_load_config_win.cc", | 182 "app/chrome_exe_load_config_win.cc", |
183 "app/chrome_exe_main_win.cc", | 183 "app/chrome_exe_main_win.cc", |
184 "app/chrome_watcher_client_win.cc", | 184 "app/chrome_watcher_client_win.cc", |
185 "app/chrome_watcher_client_win.h", | 185 "app/chrome_watcher_client_win.h", |
186 "app/chrome_watcher_command_line_win.cc", | 186 "app/chrome_watcher_command_line_win.cc", |
187 "app/chrome_watcher_command_line_win.h", | 187 "app/chrome_watcher_command_line_win.h", |
188 "app/main_dll_loader_win.cc", | 188 "app/main_dll_loader_win.cc", |
189 "app/main_dll_loader_win.h", | 189 "app/main_dll_loader_win.h", |
190 "common/crash_keys.cc", | 190 "common/crash_keys.cc", |
191 "common/crash_keys.h", | 191 "common/crash_keys.h", |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 ":chrome_child_manifest", | 497 ":chrome_child_manifest", |
498 ":chrome_dll_version", | 498 ":chrome_dll_version", |
499 "//build/config:exe_and_shlib_deps", | 499 "//build/config:exe_and_shlib_deps", |
500 "//chrome/browser/policy:path_parser", | 500 "//chrome/browser/policy:path_parser", |
501 "//chrome/common:features", | 501 "//chrome/common:features", |
502 "//chrome/install_static:install_static_util", | 502 "//chrome/install_static:install_static_util", |
503 "//chrome/install_static:secondary_module", | 503 "//chrome/install_static:secondary_module", |
504 "//chrome_elf", | 504 "//chrome_elf", |
505 "//components/browser_watcher:browser_watcher_client", | 505 "//components/browser_watcher:browser_watcher_client", |
506 "//components/crash/content/app", | 506 "//components/crash/content/app", |
| 507 "//components/keyboard_lock", |
507 "//content/public/app:child", | 508 "//content/public/app:child", |
508 "//content/public/common:service_names", | 509 "//content/public/common:service_names", |
509 "//headless:headless_shell_child_lib", | 510 "//headless:headless_shell_child_lib", |
510 "//services/service_manager/embedder", | 511 "//services/service_manager/embedder", |
511 ] | 512 ] |
512 | 513 |
513 ldflags = [ | 514 ldflags = [ |
514 "/DELAYLOAD:d3d11.dll", | 515 "/DELAYLOAD:d3d11.dll", |
515 "/DELAYLOAD:d3d9.dll", | 516 "/DELAYLOAD:d3d9.dll", |
516 "/DELAYLOAD:dwmapi.dll", | 517 "/DELAYLOAD:dwmapi.dll", |
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1407 } | 1408 } |
1408 group("chrome_dsym_archive") { | 1409 group("chrome_dsym_archive") { |
1409 } | 1410 } |
1410 } | 1411 } |
1411 } | 1412 } |
1412 | 1413 |
1413 group("browser_dependencies") { | 1414 group("browser_dependencies") { |
1414 public_deps = [ | 1415 public_deps = [ |
1415 "//chrome/browser", | 1416 "//chrome/browser", |
1416 "//chrome/common", | 1417 "//chrome/common", |
| 1418 "//components/keyboard_lock", |
1417 "//components/sync", | 1419 "//components/sync", |
1418 ] | 1420 ] |
1419 if (enable_plugins) { | 1421 if (enable_plugins) { |
1420 public_deps += [ "//ppapi/host" ] | 1422 public_deps += [ "//ppapi/host" ] |
1421 } | 1423 } |
1422 | 1424 |
1423 if (enable_basic_printing || enable_print_preview) { | 1425 if (enable_basic_printing || enable_print_preview) { |
1424 public_deps += [ "//printing" ] | 1426 public_deps += [ "//printing" ] |
1425 if (enable_print_preview) { | 1427 if (enable_print_preview) { |
1426 public_deps += [ "//chrome/service" ] | 1428 public_deps += [ "//chrome/service" ] |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1858 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1860 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1859 "//chrome/tools/build/linux/chrome-wrapper", | 1861 "//chrome/tools/build/linux/chrome-wrapper", |
1860 "//third_party/xdg-utils/scripts/xdg-mime", | 1862 "//third_party/xdg-utils/scripts/xdg-mime", |
1861 "//third_party/xdg-utils/scripts/xdg-settings", | 1863 "//third_party/xdg-utils/scripts/xdg-settings", |
1862 ] | 1864 ] |
1863 outputs = [ | 1865 outputs = [ |
1864 "$root_out_dir/{{source_file_part}}", | 1866 "$root_out_dir/{{source_file_part}}", |
1865 ] | 1867 ] |
1866 } | 1868 } |
1867 } | 1869 } |
OLD | NEW |