| 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/compiler/pgo/pgo.gni") | 8 import("//build/config/compiler/pgo/pgo.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/locales.gni") | 10 import("//build/config/locales.gni") |
| (...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 _framework_binary_path = "$root_out_dir/$chrome_framework_name.framework/" | 1130 _framework_binary_path = "$root_out_dir/$chrome_framework_name.framework/" |
| 1131 if (defined(chrome_framework_version)) { | 1131 if (defined(chrome_framework_version)) { |
| 1132 _framework_binary_path += | 1132 _framework_binary_path += |
| 1133 "Versions/$chrome_framework_version/$chrome_framework_name" | 1133 "Versions/$chrome_framework_version/$chrome_framework_name" |
| 1134 } else { | 1134 } else { |
| 1135 _framework_binary_path += "$chrome_framework_name" | 1135 _framework_binary_path += "$chrome_framework_name" |
| 1136 } | 1136 } |
| 1137 assert(_framework_binary_path != "", | 1137 assert(_framework_binary_path != "", |
| 1138 "Ignore configuration-dependent unused variable warning") | 1138 "Ignore configuration-dependent unused variable warning") |
| 1139 | 1139 |
| 1140 if (!is_asan && !is_component_build) { | 1140 if (!is_asan && !is_component_build && false) { |
| 1141 action("verify_chrome_framework_order") { | 1141 action("verify_chrome_framework_order") { |
| 1142 script = "//chrome/tools/build/mac/run_verify_order.py" | 1142 script = "//chrome/tools/build/mac/run_verify_order.py" |
| 1143 stamp_file = "$target_out_dir/run_$target_name.stamp" | 1143 stamp_file = "$target_out_dir/run_$target_name.stamp" |
| 1144 inputs = [ | 1144 inputs = [ |
| 1145 script, | 1145 script, |
| 1146 "//chrome/tools/build/mac/verify_order", | 1146 "//chrome/tools/build/mac/verify_order", |
| 1147 ] | 1147 ] |
| 1148 args = [ | 1148 args = [ |
| 1149 "--stamp", | 1149 "--stamp", |
| 1150 rebase_path(stamp_file, root_out_dir), | 1150 rebase_path(stamp_file, root_out_dir), |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1680 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1680 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1681 "//chrome/tools/build/linux/chrome-wrapper", | 1681 "//chrome/tools/build/linux/chrome-wrapper", |
| 1682 "//third_party/xdg-utils/scripts/xdg-mime", | 1682 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1683 "//third_party/xdg-utils/scripts/xdg-settings", | 1683 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1684 ] | 1684 ] |
| 1685 outputs = [ | 1685 outputs = [ |
| 1686 "$root_out_dir/{{source_file_part}}", | 1686 "$root_out_dir/{{source_file_part}}", |
| 1687 ] | 1687 ] |
| 1688 } | 1688 } |
| 1689 } | 1689 } |
| OLD | NEW |