| 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") |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 outputs = [ | 39 outputs = [ |
| 40 "$root_out_dir/chrome.exe", | 40 "$root_out_dir/chrome.exe", |
| 41 "$root_out_dir/chrome.exe.pdb", | 41 "$root_out_dir/chrome.exe.pdb", |
| 42 ] | 42 ] |
| 43 args = [ | 43 args = [ |
| 44 "-i", | 44 "-i", |
| 45 rebase_path("$root_out_dir/initialexe", root_build_dir), | 45 rebase_path("$root_out_dir/initialexe", root_build_dir), |
| 46 "-o", | 46 "-o", |
| 47 rebase_path("$root_out_dir", root_build_dir), | 47 rebase_path("$root_out_dir", root_build_dir), |
| 48 "-a", | 48 "-a", |
| 49 target_cpu, | 49 current_cpu, |
| 50 ] | 50 ] |
| 51 deps = [ | 51 deps = [ |
| 52 ":chrome_initial", | 52 ":chrome_initial", |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 | 56 |
| 57 if (!is_android && !is_mac) { | 57 if (!is_android && !is_mac) { |
| 58 group("chrome") { | 58 group("chrome") { |
| 59 public_deps = [ | 59 public_deps = [ |
| (...skipping 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1567 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1567 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1568 "//chrome/tools/build/linux/chrome-wrapper", | 1568 "//chrome/tools/build/linux/chrome-wrapper", |
| 1569 "//third_party/xdg-utils/scripts/xdg-mime", | 1569 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1570 "//third_party/xdg-utils/scripts/xdg-settings", | 1570 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1571 ] | 1571 ] |
| 1572 outputs = [ | 1572 outputs = [ |
| 1573 "$root_out_dir/{{source_file_part}}", | 1573 "$root_out_dir/{{source_file_part}}", |
| 1574 ] | 1574 ] |
| 1575 } | 1575 } |
| 1576 } | 1576 } |
| OLD | NEW |