| 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") |
| 11 import("//build/config/ui.gni") | 11 import("//build/config/ui.gni") |
| 12 import("//build/config/win/console_app.gni") | 12 import("//build/config/win/console_app.gni") |
| 13 import("//build/config/win/manifest.gni") | 13 import("//build/config/win/manifest.gni") |
| 14 import("//build/toolchain/toolchain.gni") | 14 import("//build/toolchain/toolchain.gni") |
| 15 import("//chrome/chrome_paks.gni") | 15 import("//chrome/chrome_paks.gni") |
| 16 import("//chrome/common/features.gni") | 16 import("//chrome/common/features.gni") |
| 17 import("//chrome/process_version_rc_template.gni") | 17 import("//chrome/process_version_rc_template.gni") |
| 18 import("//ppapi/features/features.gni") |
| 18 import("//third_party/widevine/cdm/widevine.gni") | 19 import("//third_party/widevine/cdm/widevine.gni") |
| 19 import("//tools/resources/generate_resource_whitelist.gni") | 20 import("//tools/resources/generate_resource_whitelist.gni") |
| 20 import("//v8/gni/v8.gni") | 21 import("//v8/gni/v8.gni") |
| 21 | 22 |
| 22 if (is_android) { | 23 if (is_android) { |
| 23 import("//build/config/android/rules.gni") | 24 import("//build/config/android/rules.gni") |
| 24 } else if (is_mac) { | 25 } else if (is_mac) { |
| 25 import("//build/compiled_action.gni") | 26 import("//build/compiled_action.gni") |
| 26 import("//build/config/mac/rules.gni") | 27 import("//build/config/mac/rules.gni") |
| 27 import("//build/config/mac/symbols.gni") | 28 import("//build/config/mac/symbols.gni") |
| (...skipping 1530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1558 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1559 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1559 "//chrome/tools/build/linux/chrome-wrapper", | 1560 "//chrome/tools/build/linux/chrome-wrapper", |
| 1560 "//third_party/xdg-utils/scripts/xdg-mime", | 1561 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1561 "//third_party/xdg-utils/scripts/xdg-settings", | 1562 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1562 ] | 1563 ] |
| 1563 outputs = [ | 1564 outputs = [ |
| 1564 "$root_out_dir/{{source_file_part}}", | 1565 "$root_out_dir/{{source_file_part}}", |
| 1565 ] | 1566 ] |
| 1566 } | 1567 } |
| 1567 } | 1568 } |
| OLD | NEW |