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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//build/config/win/manifest.gni") | 10 import("//build/config/win/manifest.gni") |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 | 202 |
203 if (use_x11) { | 203 if (use_x11) { |
204 configs += [ | 204 configs += [ |
205 "//build/config/linux:x11", | 205 "//build/config/linux:x11", |
206 "//build/config/linux:xext", | 206 "//build/config/linux:xext", |
207 ] | 207 ] |
208 } | 208 } |
209 } | 209 } |
210 | 210 |
211 if (is_mac) { | 211 if (is_mac) { |
212 sources += [ "app/chrome_exe_main_mac.cc" ] | 212 sources += [ "app/chrome_exe_main_mac.c" ] |
213 # TODO(GYP) lots more stuff in the is_mac block. | 213 # TODO(GYP) lots more stuff in the is_mac block. |
214 } else { # Non-Mac. | 214 } else { # Non-Mac. |
215 # These files are used by the installer so we need a public dep. | 215 # These files are used by the installer so we need a public dep. |
216 public_deps += [ | 216 public_deps += [ |
217 ":packed_extra_resources", | 217 ":packed_extra_resources", |
218 ":packed_resources", | 218 ":packed_resources", |
219 ] | 219 ] |
220 deps += [ | 220 deps += [ |
221 "//components/startup_metric_utils", | 221 "//components/startup_metric_utils", |
222 | 222 |
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 994 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
995 "//chrome/tools/build/linux/chrome-wrapper", | 995 "//chrome/tools/build/linux/chrome-wrapper", |
996 "//third_party/xdg-utils/scripts/xdg-mime", | 996 "//third_party/xdg-utils/scripts/xdg-mime", |
997 "//third_party/xdg-utils/scripts/xdg-settings", | 997 "//third_party/xdg-utils/scripts/xdg-settings", |
998 ] | 998 ] |
999 outputs = [ | 999 outputs = [ |
1000 "$root_out_dir/{{source_file_part}}", | 1000 "$root_out_dir/{{source_file_part}}", |
1001 ] | 1001 ] |
1002 } | 1002 } |
1003 } | 1003 } |
OLD | NEW |