| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "app/kasko_client.h", | 145 "app/kasko_client.h", |
| 146 "app/main_dll_loader_win.cc", | 146 "app/main_dll_loader_win.cc", |
| 147 "app/main_dll_loader_win.h", | 147 "app/main_dll_loader_win.h", |
| 148 "common/crash_keys.cc", | 148 "common/crash_keys.cc", |
| 149 "common/crash_keys.h", | 149 "common/crash_keys.h", |
| 150 ] | 150 ] |
| 151 | 151 |
| 152 deps += [ | 152 deps += [ |
| 153 ":chrome_dll", | 153 ":chrome_dll", |
| 154 ":chrome_exe_version", | 154 ":chrome_exe_version", |
| 155 ":copy_first_run", |
| 155 ":file_pre_reader", | 156 ":file_pre_reader", |
| 156 ":visual_elements_resources", | 157 ":visual_elements_resources", |
| 157 "//base", | 158 "//base", |
| 158 "//breakpad:breakpad_handler", | 159 "//breakpad:breakpad_handler", |
| 159 "//breakpad:breakpad_sender", | 160 "//breakpad:breakpad_sender", |
| 160 "//chrome/app/version_assembly:chrome_exe_manifest", | 161 "//chrome/app/version_assembly:chrome_exe_manifest", |
| 161 "//chrome/browser:chrome_process_finder", | 162 "//chrome/browser:chrome_process_finder", |
| 162 "//chrome/chrome_watcher", | 163 "//chrome/chrome_watcher", |
| 163 "//chrome/chrome_watcher:client", | 164 "//chrome/chrome_watcher:client", |
| 164 "//chrome/common:constants", | 165 "//chrome/common:constants", |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 } | 439 } |
| 439 } | 440 } |
| 440 | 441 |
| 441 deps += [ "//chrome/browser/policy:path_parser" ] | 442 deps += [ "//chrome/browser/policy:path_parser" ] |
| 442 | 443 |
| 443 if (enable_plugins && enable_pdf) { | 444 if (enable_plugins && enable_pdf) { |
| 444 deps += [ "//pdf" ] | 445 deps += [ "//pdf" ] |
| 445 } | 446 } |
| 446 } | 447 } |
| 447 } | 448 } |
| 449 copy("copy_first_run") { |
| 450 sources = [ |
| 451 "app/firstRun", |
| 452 ] |
| 453 outputs = [ |
| 454 "$root_out_dir/First Run", |
| 455 ] |
| 456 } |
| 448 } else if (is_mac) { | 457 } else if (is_mac) { |
| 449 chrome_helper_name = chrome_product_full_name + " Helper" | 458 chrome_helper_name = chrome_product_full_name + " Helper" |
| 450 chrome_framework_name = chrome_product_full_name + " Framework" | 459 chrome_framework_name = chrome_product_full_name + " Framework" |
| 451 | 460 |
| 452 group("chrome") { | 461 group("chrome") { |
| 453 deps = [ | 462 deps = [ |
| 454 ":chrome_app", | 463 ":chrome_app", |
| 455 ] | 464 ] |
| 456 | 465 |
| 457 data_deps = [ | 466 data_deps = [ |
| (...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1805 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1814 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1806 "//chrome/tools/build/linux/chrome-wrapper", | 1815 "//chrome/tools/build/linux/chrome-wrapper", |
| 1807 "//third_party/xdg-utils/scripts/xdg-mime", | 1816 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1808 "//third_party/xdg-utils/scripts/xdg-settings", | 1817 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1809 ] | 1818 ] |
| 1810 outputs = [ | 1819 outputs = [ |
| 1811 "$root_out_dir/{{source_file_part}}", | 1820 "$root_out_dir/{{source_file_part}}", |
| 1812 ] | 1821 ] |
| 1813 } | 1822 } |
| 1814 } | 1823 } |
| OLD | NEW |