| 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") |
| 11 import("//build/config/win/console_app.gni") | 11 import("//build/config/win/console_app.gni") |
| 12 import("//build/config/win/manifest.gni") | 12 import("//build/config/win/manifest.gni") |
| 13 import("//chrome/chrome_repack_locales.gni") | 13 import("//chrome/chrome_repack_locales.gni") |
| 14 import("//chrome/version.gni") | 14 import("//chrome/version.gni") |
| 15 import("//ui/base/ui_features.gni") |
| 15 | 16 |
| 16 declare_args() { | 17 declare_args() { |
| 17 # Specify the current PGO phase, only used for the Windows MSVS build. Here's | 18 # Specify the current PGO phase, only used for the Windows MSVS build. Here's |
| 18 # the different values that can be used: | 19 # the different values that can be used: |
| 19 # 0 : Means that PGO is turned off. | 20 # 0 : Means that PGO is turned off. |
| 20 # 1 : Used during the PGI (instrumentation) phase. | 21 # 1 : Used during the PGI (instrumentation) phase. |
| 21 # 2 : Used during the PGO (optimization) phase. | 22 # 2 : Used during the PGO (optimization) phase. |
| 22 # | 23 # |
| 23 # TODO(sebmarchand): Add support for the PGU (update) phase. | 24 # TODO(sebmarchand): Add support for the PGU (update) phase. |
| 24 chrome_pgo_phase = 0 | 25 chrome_pgo_phase = 0 |
| (...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1097 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1098 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1098 "//chrome/tools/build/linux/chrome-wrapper", | 1099 "//chrome/tools/build/linux/chrome-wrapper", |
| 1099 "//third_party/xdg-utils/scripts/xdg-mime", | 1100 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1100 "//third_party/xdg-utils/scripts/xdg-settings", | 1101 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1101 ] | 1102 ] |
| 1102 outputs = [ | 1103 outputs = [ |
| 1103 "$root_out_dir/{{source_file_part}}", | 1104 "$root_out_dir/{{source_file_part}}", |
| 1104 ] | 1105 ] |
| 1105 } | 1106 } |
| 1106 } | 1107 } |
| OLD | NEW |