| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 public_deps = [ | 95 public_deps = [ |
| 96 ":chrome_initial", | 96 ":chrome_initial", |
| 97 ] | 97 ] |
| 98 data_deps = [ | 98 data_deps = [ |
| 99 ":chrome_initial", | 99 ":chrome_initial", |
| 100 ] | 100 ] |
| 101 if (is_win) { | 101 if (is_win) { |
| 102 public_deps += [ ":reorder_imports" ] | 102 public_deps += [ ":reorder_imports" ] |
| 103 } | 103 } |
| 104 if (use_aura && (is_win || is_linux)) { | 104 if (use_aura && (is_win || is_linux)) { |
| 105 data_deps += [ "//chrome/app:mojo_manifests" ] | 105 data_deps += [ "//chrome/app:service_manifests" ] |
| 106 } | 106 } |
| 107 } | 107 } |
| 108 | 108 |
| 109 executable("chrome_initial") { | 109 executable("chrome_initial") { |
| 110 if (is_win) { | 110 if (is_win) { |
| 111 output_name = "initialexe/chrome" | 111 output_name = "initialexe/chrome" |
| 112 } else { | 112 } else { |
| 113 output_name = "chrome" | 113 output_name = "chrome" |
| 114 } | 114 } |
| 115 | 115 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 | 241 |
| 242 if (use_x11) { | 242 if (use_x11) { |
| 243 configs += [ | 243 configs += [ |
| 244 "//build/config/linux:x11", | 244 "//build/config/linux:x11", |
| 245 "//build/config/linux:xext", | 245 "//build/config/linux:xext", |
| 246 ] | 246 ] |
| 247 } | 247 } |
| 248 | 248 |
| 249 if (enable_package_mash_services) { | 249 if (enable_package_mash_services) { |
| 250 deps += [ "//chrome/app/mash" ] | 250 deps += [ "//chrome/app/mash" ] |
| 251 data_deps += [ "//chrome/app:mojo_manifests" ] | 251 data_deps += [ "//chrome/app:service_manifests" ] |
| 252 } | 252 } |
| 253 } | 253 } |
| 254 | 254 |
| 255 # These files are used by the installer so we need a public dep. | 255 # These files are used by the installer so we need a public dep. |
| 256 public_deps += [ ":packed_resources" ] | 256 public_deps += [ ":packed_resources" ] |
| 257 | 257 |
| 258 # Only ChromeOS has precompiled Flash that needs to get copied to the output | 258 # Only ChromeOS has precompiled Flash that needs to get copied to the output |
| 259 # directory. On other platforms, Flash is either component-updated only or | 259 # directory. On other platforms, Flash is either component-updated only or |
| 260 # not supported at all. | 260 # not supported at all. |
| 261 if (is_chromeos) { | 261 if (is_chromeos) { |
| (...skipping 1292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1554 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1554 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1555 "//chrome/tools/build/linux/chrome-wrapper", | 1555 "//chrome/tools/build/linux/chrome-wrapper", |
| 1556 "//third_party/xdg-utils/scripts/xdg-mime", | 1556 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1557 "//third_party/xdg-utils/scripts/xdg-settings", | 1557 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1558 ] | 1558 ] |
| 1559 outputs = [ | 1559 outputs = [ |
| 1560 "$root_out_dir/{{source_file_part}}", | 1560 "$root_out_dir/{{source_file_part}}", |
| 1561 ] | 1561 ] |
| 1562 } | 1562 } |
| 1563 } | 1563 } |
| OLD | NEW |