| 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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 inputs = [ | 1060 inputs = [ |
| 1061 script, | 1061 script, |
| 1062 "//chrome/tools/build/mac/verify_order", | 1062 "//chrome/tools/build/mac/verify_order", |
| 1063 ] | 1063 ] |
| 1064 args = [ | 1064 args = [ |
| 1065 "--stamp", | 1065 "--stamp", |
| 1066 rebase_path(stamp_file, root_out_dir), | 1066 rebase_path(stamp_file, root_out_dir), |
| 1067 ] | 1067 ] |
| 1068 if (!use_system_xcode) { | 1068 if (!use_system_xcode) { |
| 1069 args += [ | 1069 args += [ |
| 1070 "--developer-dir", | 1070 "--developer_dir", |
| 1071 hermetic_xcode_path, | 1071 hermetic_xcode_path, |
| 1072 ] | 1072 ] |
| 1073 } | 1073 } |
| 1074 args += [ | 1074 args += [ |
| 1075 "_ChromeMain", | 1075 "_ChromeMain", |
| 1076 rebase_path( | 1076 rebase_path( |
| 1077 "$root_out_dir/$chrome_framework_name.framework/$chrome_framework_na
me", | 1077 "$root_out_dir/$chrome_framework_name.framework/$chrome_framework_na
me", |
| 1078 root_out_dir), | 1078 root_out_dir), |
| 1079 ] | 1079 ] |
| 1080 outputs = [ | 1080 outputs = [ |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1562 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1562 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1563 "//chrome/tools/build/linux/chrome-wrapper", | 1563 "//chrome/tools/build/linux/chrome-wrapper", |
| 1564 "//third_party/xdg-utils/scripts/xdg-mime", | 1564 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1565 "//third_party/xdg-utils/scripts/xdg-settings", | 1565 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1566 ] | 1566 ] |
| 1567 outputs = [ | 1567 outputs = [ |
| 1568 "$root_out_dir/{{source_file_part}}", | 1568 "$root_out_dir/{{source_file_part}}", |
| 1569 ] | 1569 ] |
| 1570 } | 1570 } |
| 1571 } | 1571 } |
| OLD | NEW |