| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 204 |
| 205 if (use_x11) { | 205 if (use_x11) { |
| 206 configs += [ | 206 configs += [ |
| 207 "//build/config/linux:x11", | 207 "//build/config/linux:x11", |
| 208 "//build/config/linux:xext", | 208 "//build/config/linux:xext", |
| 209 ] | 209 ] |
| 210 } | 210 } |
| 211 | 211 |
| 212 if (enable_package_mash_services) { | 212 if (enable_package_mash_services) { |
| 213 deps += [ "//chrome/app/mash" ] | 213 deps += [ "//chrome/app/mash" ] |
| 214 data_deps += [ "//chrome/app:mojo_manifests" ] |
| 214 } | 215 } |
| 215 } | 216 } |
| 216 | 217 |
| 217 if (is_mac) { | 218 if (is_mac) { |
| 218 sources += [ "app/chrome_exe_main_mac.c" ] | 219 sources += [ "app/chrome_exe_main_mac.c" ] |
| 219 deps += [ ":chrome_dll" ] | 220 deps += [ ":chrome_dll" ] |
| 220 | 221 |
| 221 # TODO(GYP) lots more stuff in the is_mac block. | 222 # TODO(GYP) lots more stuff in the is_mac block. |
| 222 } else { # Non-Mac. | 223 } else { # Non-Mac. |
| 223 # These files are used by the installer so we need a public dep. | 224 # These files are used by the installer so we need a public dep. |
| (...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1103 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1103 "//chrome/tools/build/linux/chrome-wrapper", | 1104 "//chrome/tools/build/linux/chrome-wrapper", |
| 1104 "//third_party/xdg-utils/scripts/xdg-mime", | 1105 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1105 "//third_party/xdg-utils/scripts/xdg-settings", | 1106 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1106 ] | 1107 ] |
| 1107 outputs = [ | 1108 outputs = [ |
| 1108 "$root_out_dir/{{source_file_part}}", | 1109 "$root_out_dir/{{source_file_part}}", |
| 1109 ] | 1110 ] |
| 1110 } | 1111 } |
| 1111 } | 1112 } |
| OLD | NEW |