| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 # Because the sources list varies so significantly per-platform, generally | 118 # Because the sources list varies so significantly per-platform, generally |
| 119 # each platform lists its own files rather than relying on filtering or | 119 # each platform lists its own files rather than relying on filtering or |
| 120 # removing unused files. | 120 # removing unused files. |
| 121 sources = [ | 121 sources = [ |
| 122 "app/chrome_exe_resource.h", | 122 "app/chrome_exe_resource.h", |
| 123 ] | 123 ] |
| 124 defines = [] | 124 defines = [] |
| 125 public_deps = [] | 125 public_deps = [] |
| 126 deps = [ | 126 deps = [ |
| 127 "//build/config/sanitizers:deps", | 127 "//build/config/sanitizers:deps", |
| 128 "//printing/features", |
| 128 ] | 129 ] |
| 129 | 130 |
| 130 data = [ | 131 data = [ |
| 131 "$root_out_dir/resources.pak", | 132 "$root_out_dir/resources.pak", |
| 132 ] | 133 ] |
| 133 if (is_linux || is_win) { | 134 if (is_linux || is_win) { |
| 134 data += [ | 135 data += [ |
| 135 "$root_out_dir/chrome_100_percent.pak", | 136 "$root_out_dir/chrome_100_percent.pak", |
| 136 "$root_out_dir/locales/en-US.pak", | 137 "$root_out_dir/locales/en-US.pak", |
| 137 "$root_out_dir/locales/fr.pak", | 138 "$root_out_dir/locales/fr.pak", |
| (...skipping 1436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1574 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1575 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1575 "//chrome/tools/build/linux/chrome-wrapper", | 1576 "//chrome/tools/build/linux/chrome-wrapper", |
| 1576 "//third_party/xdg-utils/scripts/xdg-mime", | 1577 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1577 "//third_party/xdg-utils/scripts/xdg-settings", | 1578 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1578 ] | 1579 ] |
| 1579 outputs = [ | 1580 outputs = [ |
| 1580 "$root_out_dir/{{source_file_part}}", | 1581 "$root_out_dir/{{source_file_part}}", |
| 1581 ] | 1582 ] |
| 1582 } | 1583 } |
| 1583 } | 1584 } |
| OLD | NEW |