| 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 # This manifest matches what GYP produces. It may not even be necessary. | 398 # This manifest matches what GYP produces. It may not even be necessary. |
| 399 windows_manifest("chrome_child_manifest") { | 399 windows_manifest("chrome_child_manifest") { |
| 400 sources = [ | 400 sources = [ |
| 401 as_invoker_manifest, | 401 as_invoker_manifest, |
| 402 ] | 402 ] |
| 403 type = "dll" | 403 type = "dll" |
| 404 } | 404 } |
| 405 | 405 |
| 406 shared_library("chrome_child") { | 406 shared_library("chrome_child") { |
| 407 sources = [ | 407 sources = [ |
| 408 "app/chrome_crash_reporter_client.cc", | |
| 409 "app/chrome_crash_reporter_client.h", | |
| 410 "app/chrome_main.cc", | 408 "app/chrome_main.cc", |
| 411 "app/chrome_main_delegate.cc", | 409 "app/chrome_main_delegate.cc", |
| 412 "app/chrome_main_delegate.h", | 410 "app/chrome_main_delegate.h", |
| 413 "app/close_handle_hook_win.cc", | 411 "app/close_handle_hook_win.cc", |
| 414 "app/close_handle_hook_win.h", | 412 "app/close_handle_hook_win.h", |
| 415 ] | 413 ] |
| 416 | 414 |
| 417 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 415 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 418 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 416 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
| 419 | 417 |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1074 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1077 "//chrome/tools/build/linux/chrome-wrapper", | 1075 "//chrome/tools/build/linux/chrome-wrapper", |
| 1078 "//third_party/xdg-utils/scripts/xdg-mime", | 1076 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1079 "//third_party/xdg-utils/scripts/xdg-settings", | 1077 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1080 ] | 1078 ] |
| 1081 outputs = [ | 1079 outputs = [ |
| 1082 "$root_out_dir/{{source_file_part}}", | 1080 "$root_out_dir/{{source_file_part}}", |
| 1083 ] | 1081 ] |
| 1084 } | 1082 } |
| 1085 } | 1083 } |
| OLD | NEW |