| 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/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/locales.gni") | 8 import("//build/config/locales.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 sources = [ | 287 sources = [ |
| 288 "//base/win/dllmain.cc", | 288 "//base/win/dllmain.cc", |
| 289 "app/chrome_command_ids.h", | 289 "app/chrome_command_ids.h", |
| 290 "app/chrome_dll.rc", | 290 "app/chrome_dll.rc", |
| 291 "app/chrome_dll_resource.h", | 291 "app/chrome_dll_resource.h", |
| 292 "app/chrome_main.cc", | 292 "app/chrome_main.cc", |
| 293 "app/chrome_main_delegate.cc", | 293 "app/chrome_main_delegate.cc", |
| 294 "app/chrome_main_delegate.h", | 294 "app/chrome_main_delegate.h", |
| 295 "app/chrome_main_mac.h", | 295 "app/chrome_main_mac.h", |
| 296 "app/chrome_main_mac.mm", | 296 "app/chrome_main_mac.mm", |
| 297 "app/close_handle_hook_win.cc", |
| 298 "app/close_handle_hook_win.h", |
| 297 "app/delay_load_hook_win.cc", | 299 "app/delay_load_hook_win.cc", |
| 298 "app/delay_load_hook_win.h", | 300 "app/delay_load_hook_win.h", |
| 299 ] | 301 ] |
| 300 | 302 |
| 301 deps = [ | 303 deps = [ |
| 302 ":browser_dependencies", | 304 ":browser_dependencies", |
| 303 "//base/allocator", | 305 "//base/allocator", |
| 304 "//build/config/sanitizers:deps", | 306 "//build/config/sanitizers:deps", |
| 305 ] | 307 ] |
| 306 if (is_win) { | 308 if (is_win) { |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 as_invoker_manifest, | 388 as_invoker_manifest, |
| 387 ] | 389 ] |
| 388 type = "dll" | 390 type = "dll" |
| 389 } | 391 } |
| 390 | 392 |
| 391 shared_library("chrome_child") { | 393 shared_library("chrome_child") { |
| 392 sources = [ | 394 sources = [ |
| 393 "app/chrome_main.cc", | 395 "app/chrome_main.cc", |
| 394 "app/chrome_main_delegate.cc", | 396 "app/chrome_main_delegate.cc", |
| 395 "app/chrome_main_delegate.h", | 397 "app/chrome_main_delegate.h", |
| 398 "app/close_handle_hook_win.cc", |
| 399 "app/close_handle_hook_win.h", |
| 396 ] | 400 ] |
| 397 | 401 |
| 398 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 402 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 399 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 403 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
| 400 | 404 |
| 401 deps = [ | 405 deps = [ |
| 402 ":child_dependencies", | 406 ":child_dependencies", |
| 403 ":chrome_child_manifest", | 407 ":chrome_child_manifest", |
| 404 ":chrome_dll_version", | 408 ":chrome_dll_version", |
| 405 "//base/allocator", | 409 "//base/allocator", |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1069 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1066 "//chrome/tools/build/linux/chrome-wrapper", | 1070 "//chrome/tools/build/linux/chrome-wrapper", |
| 1067 "//third_party/xdg-utils/scripts/xdg-mime", | 1071 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1068 "//third_party/xdg-utils/scripts/xdg-settings", | 1072 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1069 ] | 1073 ] |
| 1070 outputs = [ | 1074 outputs = [ |
| 1071 "$root_out_dir/{{source_file_part}}", | 1075 "$root_out_dir/{{source_file_part}}", |
| 1072 ] | 1076 ] |
| 1073 } | 1077 } |
| 1074 } | 1078 } |
| OLD | NEW |