| 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 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 if (is_android) { | 26 if (is_android) { |
| 27 import("//build/config/android/rules.gni") | 27 import("//build/config/android/rules.gni") |
| 28 } else if (is_mac) { | 28 } else if (is_mac) { |
| 29 import("//build/compiled_action.gni") | 29 import("//build/compiled_action.gni") |
| 30 import("//build/config/mac/rules.gni") | 30 import("//build/config/mac/rules.gni") |
| 31 import("//build/config/mac/symbols.gni") | 31 import("//build/config/mac/symbols.gni") |
| 32 import("//build/mac/tweak_info_plist.gni") | 32 import("//build/mac/tweak_info_plist.gni") |
| 33 import("//build/util/branding.gni") | 33 import("//build/util/branding.gni") |
| 34 import("//build/util/version.gni") | 34 import("//build/util/version.gni") |
| 35 import("//build_overrides/v8.gni") | |
| 36 import("//media/cdm/ppapi/cdm_paths.gni") | 35 import("//media/cdm/ppapi/cdm_paths.gni") |
| 37 import("//third_party/icu/config.gni") | 36 import("//third_party/icu/config.gni") |
| 38 } | 37 } |
| 39 | 38 |
| 40 if (enable_resource_whitelist_generation) { | 39 if (enable_resource_whitelist_generation) { |
| 41 chrome_resource_whitelist = "$target_gen_dir/chrome_resource_whitelist.txt" | 40 chrome_resource_whitelist = "$target_gen_dir/chrome_resource_whitelist.txt" |
| 42 } | 41 } |
| 43 | 42 |
| 44 if (is_win) { | 43 if (is_win) { |
| 45 action("reorder_imports") { | 44 action("reorder_imports") { |
| (...skipping 1551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1597 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1596 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1598 "//chrome/tools/build/linux/chrome-wrapper", | 1597 "//chrome/tools/build/linux/chrome-wrapper", |
| 1599 "//third_party/xdg-utils/scripts/xdg-mime", | 1598 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1600 "//third_party/xdg-utils/scripts/xdg-settings", | 1599 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1601 ] | 1600 ] |
| 1602 outputs = [ | 1601 outputs = [ |
| 1603 "$root_out_dir/{{source_file_part}}", | 1602 "$root_out_dir/{{source_file_part}}", |
| 1604 ] | 1603 ] |
| 1605 } | 1604 } |
| 1606 } | 1605 } |
| OLD | NEW |