| 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("//ppapi/features/features.gni") |
| 19 import("//third_party/WebKit/public/public_features.gni") |
| 19 import("//third_party/widevine/cdm/widevine.gni") | 20 import("//third_party/widevine/cdm/widevine.gni") |
| 20 import("//tools/resources/generate_resource_whitelist.gni") | 21 import("//tools/resources/generate_resource_whitelist.gni") |
| 21 import("//v8/gni/v8.gni") | 22 import("//v8/gni/v8.gni") |
| 22 | 23 |
| 23 if (is_android) { | 24 if (is_android) { |
| 24 import("//build/config/android/rules.gni") | 25 import("//build/config/android/rules.gni") |
| 25 } else if (is_mac) { | 26 } else if (is_mac) { |
| 26 import("//build/compiled_action.gni") | 27 import("//build/compiled_action.gni") |
| 27 import("//build/config/mac/rules.gni") | 28 import("//build/config/mac/rules.gni") |
| 28 import("//build/config/mac/symbols.gni") | 29 import("//build/config/mac/symbols.gni") |
| (...skipping 1544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1573 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1574 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1574 "//chrome/tools/build/linux/chrome-wrapper", | 1575 "//chrome/tools/build/linux/chrome-wrapper", |
| 1575 "//third_party/xdg-utils/scripts/xdg-mime", | 1576 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1576 "//third_party/xdg-utils/scripts/xdg-settings", | 1577 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1577 ] | 1578 ] |
| 1578 outputs = [ | 1579 outputs = [ |
| 1579 "$root_out_dir/{{source_file_part}}", | 1580 "$root_out_dir/{{source_file_part}}", |
| 1580 ] | 1581 ] |
| 1581 } | 1582 } |
| 1582 } | 1583 } |
| OLD | NEW |